You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gobblin.apache.org by wl...@apache.org on 2022/09/15 01:54:32 UTC

[gobblin] branch master updated: [GOBBLIN-1710] Codecov should be optional in CI and not fail Github Actions (#3562)

This is an automated email from the ASF dual-hosted git repository.

wlo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gobblin.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ae4ec71e [GOBBLIN-1710]  Codecov should be optional in CI and not fail Github Actions (#3562)
5ae4ec71e is described below

commit 5ae4ec71e279bed55cd1d10ae0d3bd918fab1d44
Author: Matthew Ho <ho...@gmail.com>
AuthorDate: Wed Sep 14 18:54:25 2022 -0700

    [GOBBLIN-1710]  Codecov should be optional in CI and not fail Github Actions (#3562)
---
 .github/workflows/build_and_test.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml
index c2fdf7bbc..b70e18ab3 100644
--- a/.github/workflows/build_and_test.yaml
+++ b/.github/workflows/build_and_test.yaml
@@ -87,7 +87,7 @@ jobs:
           restore-keys: ${{ runner.os }}-gradle
       - name: Run CheckStyle and FindBugs
         run: |
-          ./gradlew --no-daemon javadoc findbugsMain checkstyleMain checkstyleTest checkstyleJmh 
+          ./gradlew --no-daemon javadoc findbugsMain checkstyleMain checkstyleTest checkstyleJmh
 
   run_tests:
     timeout-minutes: 120
@@ -172,5 +172,5 @@ jobs:
         uses: codecov/codecov-action@v2
         with:
           files: ${{ env.jacoco_reports }}
-          fail_ci_if_error: true
+          fail_ci_if_error: false
           verbose: true