Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
add nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam committed Oct 5, 2022
1 parent 6321bac commit a9bbc86
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/ci/gitlab/pipeline/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,11 @@ check-try-runtime:
check-runtime-migration:
stage: check
extends:
# - .docker-env
# k8s runner for test
- .kubernetes-env
- .docker-env
- .test-pr-refs
- .compiler-info
# for test
timeout: 3h
image: "paritytech/ci-linux:production"
variables:
WS: ws://substrate-api-sidecar-benchmark-node.nodes:9944
WS: wss://polkadot-try-runtime-node.parity-chains.parity.io:433
script:
- |
export has_runtimemigration_label=$(curl -sS -H "Accept: application/vnd.github+json" \
Expand All @@ -74,7 +69,12 @@ check-runtime-migration:
if [[ $has_runtimemigration_label != 0 ]]; then
echo "Found label runtimemigration. Running tests"
export RUST_LOG=remote-ext=debug,runtime=debug
time cargo test --release -p westend-runtime -p polkadot-runtime -p kusama-runtime --features try-runtime
export WS="wss://polkadot-try-runtime-node.parity-chains.parity.io:433"
time cargo test --release -p polkadot-runtime --features try-runtime
export WS="wss://kusama-try-runtime-node.parity-chains.parity.io:433"
time cargo test --release -p kusama-runtime --features try-runtime
export WS="wss://westend-try-runtime-node.parity-chains.parity.io:433"
time cargo test --release -p westend-runtime --features try-runtime
else
echo "runtimemigration label not found. Skipping"
fi
Expand Down

0 comments on commit a9bbc86

Please sign in to comment.