From 904e3791f097844d7a266befbc58b866e22a0894 Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Mon, 25 Mar 2024 09:19:05 +0100 Subject: [PATCH] SNOW-1065172-gh-workflow-optimization: allow codecov upload to fail Sometimes on GCP this test stalls. Until we figure out what is the real prblem we will retry and add timeout. --- .github/workflows/build_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5ef1bfae..f232e669 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -223,9 +223,9 @@ jobs: - name: Uplaod to codecov uses: codecov/codecov-action@v4 with: - directory: artifacts/coverage.xml_*/coverage.xml + file: combined_coverage.xml env_vars: OS,PYTHON - fail_ci_if_error: true + fail_ci_if_error: false flags: unittests token: ${{ secrets.CODECOV_TOKEN }} verbose: true