difftreelog
Merge pull request #578 from UniqueNetwork/CI-37-core-ci-step-3-v3
in: master
Change source branch of test repo.
3 files changed
.docker/Dockerfile-try-runtimediffbeforeafterboth47 cargo build --features=$FEATURE --release47 cargo build --features=$FEATURE --release48 48 494950CMD 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_FROM5151.github/workflows/market-test_v2.ymldiffbeforeafterboth45 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'494950 - name: Read .env file50 - name: Read .env file51 uses: xom9ikk/dotenv@v1.0.251 uses: xom9ikk/dotenv@v1.0.2175 - name: Stop running containers175 - name: Stop running containers176 if: always() # run this step always176 if: always() # run this step always177 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 --volumes178# run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down179178180 - name: Remove builder cache179 - name: Remove builder cache181 if: always() # run this step always180 if: always() # run this step always.github/workflows/node-only-update_v2.ymldiffbeforeafterboth10# 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 parallel11jobs:11jobs:121213 execution-marix:13 nodes-execution-matrix:141415 name: execution matrix15 name: execution matrix161642424343444445 forkless-update-nodata:45 nodes-only-update:46 needs: execution-marix46 needs: nodes-execution-matrix47 # The type of runner that the job will run on47 # The type of runner that the job will run on48 runs-on: [self-hosted-ci,large]48 runs-on: [self-hosted-ci,large]4949575758 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)}}616162 steps:62 steps:6363262262263 - name: Remove builder cache263 - name: Remove builder cache264 if: always() # run this step always264 if: always() # run this step always265 run: |265 run: |266 docker builder prune -f266 docker builder prune -f -a267 docker system prune -f267 docker system prune -f268 docker image prune -f -a268269269 - name: Clean Workspace270 - name: Clean Workspace270 if: always()271 if: always()