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-runtimediffbeforeafterboth--- a/.docker/Dockerfile-try-runtime
+++ b/.docker/Dockerfile-try-runtime
@@ -47,4 +47,4 @@
cargo build --features=$FEATURE --release
-CMD cargo run --features=$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $REPLICA_FROM
+CMD cargo run --features=try-runtime,$FEATURE --release -- try-runtime on-runtime-upgrade live --uri $REPLICA_FROM
.github/workflows/market-test_v2.ymldiffbeforeafterboth--- a/.github/workflows/market-test_v2.yml
+++ b/.github/workflows/market-test_v2.yml
@@ -45,7 +45,7 @@
repository: 'UniqueNetwork/market-e2e-tests'
ssh-key: ${{ secrets.GH_PAT }}
path: 'qa-tests'
- ref: 'ci_test_v2'
+ ref: 'master'
- name: Read .env file
uses: xom9ikk/dotenv@v1.0.2
@@ -175,7 +175,6 @@
- name: Stop running containers
if: always() # run this step always
run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down --volumes
-# run: docker-compose -f "qa-tests/.docker/docker-compose.market.yml" -f "qa-tests/.docker/docker-compose.${{ matrix.network }}.yml" down
- name: Remove builder cache
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()