difftreelog
fix forkless build and tests workflow steps
in: master
10 files changed
.github/workflows/forkless-update-data.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-data.yml
+++ b/.github/workflows/forkless-update-data.yml
@@ -51,7 +51,7 @@
matrix:
include: ${{fromJson(needs.prepare-execution-marix.outputs.matrix)}}
- 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.
+ 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.
steps:
- name: Clean Workspace
@@ -140,7 +140,7 @@
name: ${{ matrix.network }}-data-tests
- 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.
+ 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.
strategy:
matrix:
.github/workflows/forkless-update-nodata.ymldiffbeforeafterboth--- a/.github/workflows/forkless-update-nodata.yml
+++ b/.github/workflows/forkless-update-nodata.yml
@@ -49,7 +49,7 @@
name: ${{ matrix.network }}-nodata-build
- 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.
+ 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.
strategy:
matrix:
@@ -141,7 +141,7 @@
name: ${{ matrix.network }}-nodata-tests
- 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.
+ 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.
strategy:
matrix:
.github/workflows/market-test.ymldiffbeforeafterboth--- a/.github/workflows/market-test.yml
+++ b/.github/workflows/market-test.yml
@@ -18,7 +18,7 @@
name: ${{ matrix.network }}
- 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.
+ 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.
strategy:
matrix:
.github/workflows/node-only-update.ymldiffbeforeafterboth--- a/.github/workflows/node-only-update.yml
+++ b/.github/workflows/node-only-update.yml
@@ -52,7 +52,7 @@
name: ${{ matrix.network }}
- 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.
+ 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.
strategy:
matrix:
.github/workflows/polkadot-types.ymldiffbeforeafterboth--- a/.github/workflows/polkadot-types.yml
+++ b/.github/workflows/polkadot-types.yml
@@ -24,7 +24,7 @@
name: ${{ matrix.network }}
- 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.
+ 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.
strategy:
matrix:
.github/workflows/testnet-build.ymldiffbeforeafterboth--- a/.github/workflows/testnet-build.yml
+++ b/.github/workflows/testnet-build.yml
@@ -53,7 +53,7 @@
name: ${{ matrix.network }}
- 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.
+ 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.
strategy:
matrix:
.github/workflows/try-runtime.ymldiffbeforeafterboth--- a/.github/workflows/try-runtime.yml
+++ b/.github/workflows/try-runtime.yml
@@ -43,7 +43,7 @@
# The type of runner that the job will run on
runs-on: [self-hosted-ci]
- 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.
+ 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.
name: ${{ matrix.network }}-try-runtime-build
strategy:
@@ -123,7 +123,7 @@
name: ${{ matrix.network }}-try-runtime-tests
- 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.
+ 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.
strategy:
matrix:
.github/workflows/unit-test.ymldiffbeforeafterboth1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586738699/Unit+Tests2# Re-Usable Workflow for lanching Unit tests3name: unit tests45# Controls when the action will run.6# Triger: only call from main workflow(re-usable workflows)7on:8 workflow_call:910# A workflow run is made up of one or more jobs that can run sequentially or in parallel11jobs:12 13 unit_tests:14 # The type of runner that the job will run on15 runs-on: [self-hosted-ci,medium]16 timeout-minutes: 13801718 name: ${{ github.base_ref }}1920 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.2122 steps:2324 - name: Clean Workspace25 uses: AutoModality/action-clean@v1.1.02627 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it28 - uses: actions/checkout@v3.1.029 with:30 ref: ${{ github.head_ref }} #Checking out head commit3132 - name: Read .env file33 uses: xom9ikk/dotenv@v23435 - name: Generate ENV related extend file for docker-compose36 uses: cuchi/jinja2-action@v1.2.037 with:38 template: .docker/docker-compose.tmp-unit.j239 output_file: .docker/docker-compose.unit.yml40 variables: |41 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}42 4344 - name: Show build configuration45 run: cat .docker/docker-compose.unit.yml4647 - name: Build the stack48 run: docker-compose -f ".docker/docker-compose.unit.yml" up --build --force-recreate --timeout 300 --remove-orphans --exit-code-from node-dev4950 - name: Stop running containers51 if: always() # run this step always52 run: docker-compose -f ".docker/docker-compose.unit.yml" down53 54 - name: Remove builder cache55 if: always() # run this step always56 run: |57 docker builder prune -f -a58 docker system prune -f59 docker image prune -f -a1# https://cryptousetech.atlassian.net/wiki/spaces/CI/pages/2586738699/Unit+Tests2# Re-Usable Workflow for lanching Unit tests3name: unit tests45# Controls when the action will run.6# Triger: only call from main workflow(re-usable workflows)7on:8 workflow_call:910# A workflow run is made up of one or more jobs that can run sequentially or in parallel11jobs:12 13 unit_tests:14 # The type of runner that the job will run on15 runs-on: [self-hosted-ci,medium]16 timeout-minutes: 13801718 name: ${{ github.base_ref }}1920 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.2122 steps:2324 - name: Clean Workspace25 uses: AutoModality/action-clean@v1.1.02627 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it28 - uses: actions/checkout@v3.1.029 with:30 ref: ${{ github.head_ref }} #Checking out head commit3132 - name: Read .env file33 uses: xom9ikk/dotenv@v23435 - name: Generate ENV related extend file for docker-compose36 uses: cuchi/jinja2-action@v1.2.037 with:38 template: .docker/docker-compose.tmp-unit.j239 output_file: .docker/docker-compose.unit.yml40 variables: |41 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}42 4344 - name: Show build configuration45 run: cat .docker/docker-compose.unit.yml4647 - name: Build the stack48 run: docker-compose -f ".docker/docker-compose.unit.yml" up --build --force-recreate --timeout 300 --remove-orphans --exit-code-from node-dev4950 - name: Stop running containers51 if: always() # run this step always52 run: docker-compose -f ".docker/docker-compose.unit.yml" down53 54 - name: Remove builder cache55 if: always() # run this step always56 run: |57 docker builder prune -f -a58 docker system prune -f59 docker image prune -f -a.github/workflows/xcm.ymldiffbeforeafterboth--- a/.github/workflows/xcm.yml
+++ b/.github/workflows/xcm.yml
@@ -54,7 +54,7 @@
name: ${{ matrix.network }}-build
- 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.
+ 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.
strategy:
matrix:
@@ -319,7 +319,7 @@
name: ${{ matrix.network }}-tests
- 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.
+ 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.
strategy:
matrix:
.github/workflows/yarn-dev.ymldiffbeforeafterboth--- a/.github/workflows/yarn-dev.yml
+++ b/.github/workflows/yarn-dev.yml
@@ -18,7 +18,7 @@
name: ${{ matrix.network }}
- 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.
+ 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.
strategy:
matrix: