git.delta.rocks / unique-network / refs/commits / e453a356198e

difftreelog

Merge pull request #578 from UniqueNetwork/CI-37-core-ci-step-3-v3

Yaroslav Bolyukin2022-09-14parents: #61c518e #3fb50d2.patch.diff
in: master
Change source branch of test repo.

3 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/market-test_v2.ymldiffbeforeafterboth
45 repository: 'UniqueNetwork/market-e2e-tests'45 repository: 'UniqueNetwork/market-e2e-tests'
46 ssh-key: ${{ secrets.GH_PAT }}46 ssh-key: ${{ secrets.GH_PAT }}
47 path: 'qa-tests'47 path: 'qa-tests'
48 ref: 'ci_test_v2'48 ref: 'master'
4949
50 - name: Read .env file50 - name: Read .env file
51 uses: xom9ikk/dotenv@v1.0.251 uses: xom9ikk/dotenv@v1.0.2
175 - name: Stop running containers175 - name: Stop running containers
176 if: always() # run this step always176 if: always() # run this step always
177 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down --volumes177 run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down --volumes
178# run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down
179178
180 - name: Remove builder cache179 - name: Remove builder cache
181 if: always() # run this step always180 if: always() # run this step always
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-marix:13 nodes-execution-matrix:
1414
15 name: execution matrix15 name: execution matrix
1616
4242
4343
4444
45 forkless-update-nodata:45 nodes-only-update:
46 needs: execution-marix46 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
5757
58 strategy:58 strategy:
59 matrix:59 matrix:
60 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}60 include: ${{fromJson(needs.nodes-execution-matrix.outputs.matrix)}}
6161
62 steps:62 steps:
6363
262262
263 - name: Remove builder cache263 - name: Remove builder cache
264 if: always() # run this step always264 if: always() # run this step always
265 run: |265 run: |
266 docker builder prune -f266 docker builder prune -f -a
267 docker system prune -f267 docker system prune -f
268 docker image prune -f -a
268269
269 - name: Clean Workspace270 - name: Clean Workspace
270 if: always()271 if: always()