Skip to content

Commit

Permalink
chore: add node-key to docker and add timeouts to withdraw-unbonded t…
Browse files Browse the repository at this point in the history
…ests
  • Loading branch information
beqaabu committed Feb 10, 2025
1 parent e3ef63e commit 75954cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
--validator --chain devnet \
--name "test-node-devnet-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
--public-addr "/dns4/$IP_ADDRESS/tcp/30333" \
--node-key ${{ secrets.CI_VALIDATOR_NODE_KEY }} \
--prometheus-external \
--telemetry-url "wss://telemetry.polkadot.io/submit/ 0" \
--telemetry-url "wss://telemetry.creditcoin.network/submit/ 0" \
Expand Down Expand Up @@ -75,6 +76,7 @@ jobs:
--validator --chain testnet \
--name "test-node-testnet-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
--public-addr "/dns4/$IP_ADDRESS/tcp/30333" \
--node-key ${{ secrets.CI_VALIDATOR_NODE_KEY }} \
--prometheus-external \
--telemetry-url "wss://telemetry.polkadot.io/submit/ 0" \
--telemetry-url "wss://telemetry.creditcoin.network/submit/ 0" \
Expand Down Expand Up @@ -110,6 +112,7 @@ jobs:
--validator --chain mainnet \
--name "test-node-mainnet-$GITHUB_RUN_ID-attempt-$GITHUB_RUN_ATTEMPT" \
--public-addr "/dns4/$IP_ADDRESS/tcp/30333" \
--node-key ${{ secrets.CI_VALIDATOR_NODE_KEY }} \
--prometheus-external \
--telemetry-url "wss://telemetry.polkadot.io/submit/ 0" \
--telemetry-url "wss://telemetry.creditcoin.network/submit/ 0" \
Expand Down
3 changes: 2 additions & 1 deletion cli/src/test/integration-tests/withdraw-unbonded.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('withdraw-unbonded', () => {
);
}
},
60_000,
90_000,
);

testIf(
Expand All @@ -185,6 +185,7 @@ describe('withdraw-unbonded', () => {
);
}
},
90_000,
);

testIf(
Expand Down

0 comments on commit 75954cb

Please sign in to comment.