From 6ad9467f3414a4758d0618c6c9aef8f635cc4f2d Mon Sep 17 00:00:00 2001 From: Konstantin Astakhov Date: Tue, 24 Jan 2023 14:26:36 +0000 Subject: [PATCH] fix forkless build and tests workflow steps --- --- a/.github/workflows/forkless-update-data.yml +++ b/.github/workflows/forkless-update-data.yml @@ -51,7 +51,7 @@ matrix: include: ${{fromJson(needs.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 --- a/.github/workflows/forkless-update-nodata.yml +++ b/.github/workflows/forkless-update-nodata.yml @@ -49,7 +49,7 @@ name: ${{ matrix.network }}-nodata - 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: --- 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: -- gitstuff