This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* LIVE-1292 Cover Polkadot existential deposit edge case (#1953) * Fix transaction mode mapping Send max must be balances.transfer palletMethod instead of balances.transferKeepAlive * Fix 1 DOT Polkadot limitation On the Polkadot network, an address is only active when it holds a minimum amount, currently set at 1 DOT. There's a limitation when you hold ~ 1 DOT. Use recommended 1.1 DOT value. * Improve code readability Don't use ternary operator * Split Existential Deposit and margin Restore EXISTENTIAL_DEPOSIT, use new constant EXISTENTIAL_DEPOSIT_RECOMMENDED_MARGIN to handle recommended margin * Polkabot * trigger bot * trigger bot * Change Polkadot bot to 'Mooncake' seed * Change Polkadot bot to 'Mere Denis' seed * Change Polkadot bot to 'Silicium' seed * Update Polkadot bot spec to withdraw staking funds sometimes * Fix bot condition to do bond transactions * trigger bot * trigger bot * trigger bot * trigger bot * trigger bot * lint - remove unused import Co-authored-by: Alexandre Alouit <[email protected]>
- Loading branch information
1 parent
61db299
commit 663014c
Showing
6 changed files
with
139 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Bot 'Polkadot on Silicium' | ||
on: | ||
push: | ||
branches: | ||
- family/polkadot | ||
|
||
jobs: | ||
start-runner: | ||
name: "start ec2 instance (Linux)" | ||
if: ${{ always() }} | ||
uses: ledgerhq/actions/.github/workflows/start-linux-runner.yml@main | ||
secrets: | ||
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }} | ||
|
||
stop-runner: | ||
name: "stop ec2 instance (Linux)" | ||
needs: [start-runner, run-bot] | ||
uses: ledgerhq/actions/.github/workflows/stop-linux-runner.yml@main | ||
if: ${{ always() }} | ||
with: | ||
label: ${{ needs.start-runner.outputs.label }} | ||
ec2-instance-id: ${{ needs.start-runner.outputs.ec2-instance-id }} | ||
secrets: | ||
CI_BOT_TOKEN: ${{ secrets.CI_BOT_TOKEN }} | ||
|
||
run-bot: | ||
needs: [start-runner] | ||
runs-on: ${{ needs.start-runner.outputs.label }} | ||
steps: | ||
- name: prepare runner | ||
run: | | ||
sudo growpart /dev/nvme0n1 1 | ||
sudo resize2fs /dev/nvme0n1p1 | ||
- uses: actions/checkout@v2 | ||
- name: Retrieving coin apps | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: LedgerHQ/coin-apps | ||
token: ${{ secrets.PAT }} | ||
path: coin-apps | ||
- uses: actions/setup-node@master | ||
with: | ||
node-version: 14.x | ||
- name: install yarn | ||
run: npm i -g yarn | ||
- name: pull docker image | ||
run: docker pull ghcr.io/ledgerhq/speculos | ||
- name: kill apt-get | ||
run: sudo killall -w apt-get apt || echo OK | ||
- name: Install linux deps | ||
run: sudo apt-get install -y libusb-1.0-0-dev jq | ||
- name: Install dependencies | ||
run: | | ||
yarn global add yalc | ||
yarn --frozen-lockfile | ||
yarn ci-setup-cli | ||
- name: BOT | ||
env: | ||
SEED: ${{ secrets.SEED3 }} | ||
BOT_REPORT_FOLDER: botreport | ||
VERBOSE_FILE: botreport/logs.txt | ||
GITHUB_SHA: ${GITHUB_SHA} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_RUN_ID: ${{ github.run_id }} | ||
GITHUB_WORKFLOW: ${{ github.workflow }} | ||
SLACK_API_TOKEN: ${{ secrets.SLACK_API_TOKEN }} | ||
SLACK_CHANNEL: ci-dot-ll | ||
BOT_FILTER_FAMILY: polkadot | ||
run: mkdir botreport; COINAPPS=$PWD/coin-apps yarn ci-test-bot | ||
timeout-minutes: 120 | ||
- name: Run coverage | ||
if: failure() || success() | ||
run: CODECOV_TOKEN=${{ secrets.CODECOV_TOKEN }} npx codecov | ||
- name: upload logs | ||
if: failure() || success() | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: botreport | ||
path: botreport/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
663014c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ 40 txs ❌ 1 txs ($74.47) for Bot Staging Explorer 'Bitcoin'
1 mutation errors
Details of the 41 mutations
Spec Bitcoin (failed)
Spec Bitcoin Testnet (failed)
Spec Bitcoin Cash (7)
Spec Bitcoin Gold (6)
Spec Dash (7)
Spec Digibyte (8)
Spec DogeCoin (7)
Spec Komodo (5)
Spec Litecoin (7)
Spec Peercoin (5)
Spec PivX (5)
Spec Qtum (6)
Spec Stakenet (6)
Spec Vertcoin (7)
Spec Viacoin (5)
Spec ZCash (5)
Spec Horizen (5)
Spec Decred (failed)
Details of the 31 uncovered mutations
Spec Bitcoin (4)
Spec Bitcoin Testnet (4)
Spec Bitcoin Cash (2)
Spec Bitcoin Gold (2)
Spec Digibyte (1)
Spec Komodo (1)
Spec Litecoin (2)
Spec Peercoin (1)
Spec PivX (1)
Spec Qtum (3)
Spec Stakenet (1)
Spec Vertcoin (1)
Spec Viacoin (2)
Spec ZCash (1)
Spec Horizen (1)
Spec Decred (4)
Portfolio ($74.47)
Details of the 18 currencies
663014c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ 2 txs ($20.02) for Bot Staging Explorer 'Ethereum'
Details of the 2 mutations
Spec BSC (6)
Spec Polygon (failed)
Spec Ethereum (failed)
Spec Ethereum Classic (6)
Spec Ethereum Ropsten (failed)
Details of the 11 uncovered mutations
Spec BSC (2)
Spec Polygon (2)
Spec Ethereum (6)
Spec Ethereum Ropsten (1)
Portfolio ($20.02)
Details of the 5 currencies
663014c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ 43 txs ❌ 5 txs⚠️ 1 specs ($190.67) for Bot 'Phosphore'
1 critical spec errors
Spec Bitcoin Testnet failed!
5 mutation errors
Details of the 48 mutations
Spec Algorand (6)
Spec Bitcoin (5)
Spec Bitcoin Testnet (failed)
Spec Bitcoin Cash (7)
Spec Bitcoin Gold (5)
Spec Dash (2)
Spec Digibyte (7)
Spec DogeCoin (7)
Spec Komodo (5)
Spec Litecoin (7)
Spec Peercoin (5)
Spec PivX (5)
Spec Qtum (5)
Spec Stakenet (5)
Spec Vertcoin (5)
Spec Viacoin (5)
Spec ZCash (5)
Spec Horizen (5)
Spec Decred (failed)
Spec Celo (5)
Spec Cosmos (21)
Spec Crypto.org Testnet (7)
Spec Crypto.org (failed)
Spec Elrond (3)
Spec BSC (7)
Spec Polygon (10)
Spec Ethereum (failed)
Spec Ethereum Classic (6)
Spec Ethereum Ropsten (10)
Spec Polkadot (2)
Spec XRP (5)
Spec Solana (7)
Spec Stellar (failed)
Spec Tezos (failed)
Spec Tron (failed)
Details of the 89 uncovered mutations
Spec Algorand (3)
Spec Bitcoin (4)
Spec Bitcoin Testnet (4)
Spec Bitcoin Cash (1)
Spec Bitcoin Gold (2)
Spec Dash (4)
Spec Digibyte (1)
Spec DogeCoin (1)
Spec Komodo (2)
Spec Litecoin (1)
Spec Peercoin (1)
Spec PivX (2)
Spec Qtum (2)
Spec Stakenet (3)
Spec Vertcoin (2)
Spec Viacoin (2)
Spec ZCash (4)
Spec Horizen (1)
Spec Decred (4)
Spec Cosmos (6)
Spec Crypto.org (1)
Spec Elrond (1)
Spec BSC (2)
Spec Polygon (1)
Spec Ethereum (6)
Spec Polkadot (6)
Spec Solana (6)
Spec Stellar (1)
Spec Tezos (7)
Spec Tron (8)
Portfolio ($190.67)
Details of the 35 currencies