From e126b1baaa0ba4e536c0ad0e62114ae54a357d7b Mon Sep 17 00:00:00 2001 From: romeroalx Date: Mon, 15 Jul 2024 12:41:57 +0200 Subject: [PATCH] gh actions - coveralls: avoid CI failure by setting fail-on-error: false --- .github/workflows/build-and-test-all.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-and-test-all.yml b/.github/workflows/build-and-test-all.yml index 8b6ab3ed4a..2ab2231ffd 100644 --- a/.github/workflows/build-and-test-all.yml +++ b/.github/workflows/build-and-test-all.yml @@ -107,6 +107,7 @@ jobs: path-to-lcov: $GITHUB_WORKSPACE/coverage.lcov parallel: true allow-empty: true + fail-on-error: false - run: inv ci-make-install - run: ccache -s - run: echo "normalized-branch-name=${{ inputs.branch-name || github.ref_name }}" | tr "/" "-" >> "$GITHUB_ENV" @@ -172,6 +173,7 @@ jobs: path-to-lcov: $GITHUB_WORKSPACE/coverage.lcov parallel: true allow-empty: true + fail-on-error: false collect: needs: @@ -185,6 +187,7 @@ jobs: uses: coverallsapp/github-action@v2 with: parallel-finished: true + fail-on-error: false - name: Install jq and jc run: "sudo apt-get update && sudo apt-get install jq jc" - name: Fail job if any of the previous jobs failed -- 2.47.2