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

difftreelog

fix forkless build and tests workflow steps

Konstantin Astakhov2023-01-25parent: #0d7ef96.patch.diff
in: master

9 files changed

deleted.docker/Dockerfile-parachain-upgradediffbeforeafterboth

no changes

deleted.docker/Dockerfile-parachain-upgrade-datadiffbeforeafterboth

no changes

deleted.docker/Dockerfile-try-runtimediffbeforeafterboth

no changes

deleted.docker/docker-compose.tmp-forkless-data.j2diffbeforeafterboth

no changes

deleted.docker/docker-compose.tmp-forkless-nodata.j2diffbeforeafterboth

no changes

added.docker/docker-compose.xcm.j2diffbeforeafterboth

no changes

modified.github/workflows/forkless-update-data.ymldiffbeforeafterboth
46 runs-on: [self-hosted-ci,large]46 runs-on: [self-hosted-ci,large]
47 timeout-minutes: 138047 timeout-minutes: 1380
4848
49 name: ${{ matrix.network }}-data49 name: ${{ matrix.network }}-data-build
50 strategy:50 strategy:
51 matrix:51 matrix:
52 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}52 include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}
5353
54 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.54 continue-on-error: false #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
5555
56 steps:56 steps:
57 - name: Clean Workspace57 - name: Clean Workspace
262262
263 - name: Stop running containers263 - name: Stop running containers
264 if: always() # run this step always264 if: always() # run this step always
265 run: docker-compose -f ".docker/docker-compose-forkless-data.${{ matrix.network }}.yml" down --volumes265 run: docker-compose -f ".docker/docker-compose.forkless-data.${{ matrix.network }}.yml" down --volumes
266266
267 - name: Remove builder cache267 - name: Remove builder cache
268 if: always() # run this step always268 if: always() # run this step always
modified.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth
4747
48 timeout-minutes: 138048 timeout-minutes: 1380
4949
50 name: ${{ matrix.network }}-nodata50 name: ${{ matrix.network }}-nodata-build
5151
52 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.52 continue-on-error: false #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
5353
54 strategy:54 strategy:
55 matrix:55 matrix:
modified.github/workflows/try-runtime.ymldiffbeforeafterboth
32 uses: CertainLach/create-matrix-action@v432 uses: CertainLach/create-matrix-action@v4
33 id: create_matrix33 id: create_matrix
34 with:34 with:
35 matrix: |35 matrix: |
36 network {opal}, wasm_name {opal}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}36 network {opal}, wasm_name {opal}, replica_from_address {${{ env.OPAL_REPLICA_FROM }}}
37# network {sapphire}, wasm_name {quartz}, replica_from_address {${{ env.SAPPHIRE_REPLICA_FROM }}}37 network {sapphire}, wasm_name {quartz}, replica_from_address {${{ env.SAPPHIRE_REPLICA_FROM }}}
38# network {quartz}, wasm_name {quartz}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}38 network {quartz}, wasm_name {quartz}, replica_from_address {${{ env.QUARTZ_REPLICA_FROM }}}
39# network {unique}, wasm_name {unique}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}39 network {unique}, wasm_name {unique}, replica_from_address {${{ env.UNIQUE_REPLICA_FROM }}}
4040
41 try-runtime-build:41 try-runtime-build:
42 needs: prepare-execution-marix42 needs: prepare-execution-marix
4343
44 # The type of runner that the job will run on44 # The type of runner that the job will run on
45 runs-on: [self-hosted-ci]45 runs-on: [self-hosted-ci]
46 continue-on-error: true #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.46 continue-on-error: false #Do not stop testing of matrix runs failed. As it decided during PR review - it required 50/50& Let's check it with false.
4747
48 name: ${{ matrix.network }}-try-runtime-build48 name: ${{ matrix.network }}-try-runtime-build
49 strategy:49 strategy: