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
--- 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
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
--- a/.github/workflows/node-only-update_v2.yml
+++ b/.github/workflows/node-only-update_v2.yml
@@ -10,7 +10,7 @@
 # A workflow run is made up of one or more jobs that can run sequentially or in parallel
 jobs:
 
-  execution-marix:
+  nodes-execution-matrix:
 
     name: execution matrix
 
@@ -42,8 +42,8 @@
 
 
 
-  forkless-update-nodata:
-    needs: execution-marix
+  nodes-only-update:
+    needs: nodes-execution-matrix
     # The type of runner that the job will run on
     runs-on: [self-hosted-ci,large]
 
@@ -57,7 +57,7 @@
 
     strategy:
       matrix:
-        include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}
+        include: ${{fromJson(needs.nodes-execution-matrix.outputs.matrix)}}
 
     steps:
 
@@ -263,8 +263,9 @@
       - name: Remove builder cache
         if: always()                   # run this step always
         run: |
-          docker builder prune -f
+          docker builder prune -f -a
           docker system prune -f
+          docker image prune -f -a
 
       - name: Clean Workspace
         if: always()