From 54d002806b9a2c564ebfaf49fab09f762d0d8aab Mon Sep 17 00:00:00 2001 From: George Tay Date: Mon, 15 Apr 2024 13:32:17 +0800 Subject: [PATCH] Allow CI to pass if Codecov fails (#2189) CI is failing when Codecov is failing. This is a temporary workaround for CI until issues with Codecov are fixed. --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index b79e134e9f..3e88e150c7 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -83,7 +83,7 @@ jobs: with: directory: ${{ github.workspace }}/build/reports/jacoco/coverage files: coverage.xml - fail_ci_if_error: true + fail_ci_if_error: false - name: Build preview website (pull request) if: ${{ success() && github.event_name == 'pull_request' && matrix.os == 'ubuntu-20.04' }}