git.delta.rocks / unique-network / refs/commits / 5969a58a8b5a

difftreelog

rename dependant job, move try-runtime option from build ARGs to Dockerfile

Alexander Aksenov2022-09-13parent: #011d236.patch.diff
in: master

2 files changed

modified.docker/Dockerfile-try-runtimediffbeforeafterboth
47 cargo build --features=$FEATURE --release47 cargo build --features=$FEATURE --release
48 48
4949
50CMD cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $REPLICA_FROM50CMD cargo run --features=try-runtime,$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $REPLICA_FROM
5151
modified.github/workflows/node-only-update_v2.ymldiffbeforeafterboth
10# A workflow run is made up of one or more jobs that can run sequentially or in parallel10# A workflow run is made up of one or more jobs that can run sequentially or in parallel
11jobs:11jobs:
1212
13 execution-matrix:13 nodes-execution-matrix:
1414
15 name: execution matrix15 name: execution matrix
1616
4343
4444
45 nodes-only-update:45 nodes-only-update:
46 needs: execution-matrix46 needs: nodes-execution-matrix
47 # The type of runner that the job will run on47 # The type of runner that the job will run on
48 runs-on: [self-hosted-ci,large]48 runs-on: [self-hosted-ci,large]
4949