From 5f928e235a08edbc575e521d15fdeb9825732141 Mon Sep 17 00:00:00 2001 From: Garrett Delfosse Date: Thu, 26 May 2022 13:51:16 -0500 Subject: [PATCH] chore: tolerate codecov failures in CI --- .github/workflows/coder.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index c9a153f481f92..1511ee4f6f6ce 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -208,7 +208,8 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: ./gotests.coverage flags: unittest-go-${{ matrix.os }} - fail_ci_if_error: true + # this flakes and sometimes fails the build + fail_ci_if_error: false test-go-postgres: name: "test/go/postgres" @@ -291,7 +292,8 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: ./gotests.coverage flags: unittest-go-postgres-${{ matrix.os }} - fail_ci_if_error: true + # this flakes and sometimes fails the build + fail_ci_if_error: false deploy: name: "deploy" @@ -421,7 +423,8 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} files: ./site/coverage/lcov.info flags: unittest-js - fail_ci_if_error: true + # this flakes and sometimes fails the build + fail_ci_if_error: false - name: Upload DataDog Trace if: always() && github.actor != 'dependabot[bot]' && !github.event.pull_request.head.repo.fork