diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2023-04-21 20:23:35 +0530 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-04-24 11:42:40 -0400 |
| commit | 523204f1f1529001388e4b10c5566c1eb18db4e8 (patch) | |
| tree | 87b9073d210517182b00ef471f0924300654d6d8 /.github/workflows | |
| parent | 9cc5009a44bda2af92cc10978ad7adf15b1c9fd3 (diff) | |
| download | meson-523204f1f1529001388e4b10c5566c1eb18db4e8.tar.gz | |
ci: Don't error out CI if codecov upload fails
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/cygwin.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/macos.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/msys2.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/nonnative.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/os_comp.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/unusedargs_missingreturn.yml | 4 |
6 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 940605110..9a77cad1a 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -113,5 +113,5 @@ jobs: with: files: .coverage/coverage.xml name: "${{ matrix.NAME }}" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 9a25fa16a..6d6b43af7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -55,7 +55,7 @@ jobs: with: files: .coverage/coverage.xml name: "appleclang [unit tests]" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true @@ -112,7 +112,7 @@ jobs: with: files: .coverage/coverage.xml name: "appleclang [project tests; unity=${{ matrix.unity }}]" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true Qt4macos: diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index 6ee91efd8..7f6d39e9b 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -137,5 +137,5 @@ jobs: with: files: .coverage/coverage.xml name: "${{ matrix.NAME }}" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true diff --git a/.github/workflows/nonnative.yml b/.github/workflows/nonnative.yml index 8a4cb8e75..b6066822c 100644 --- a/.github/workflows/nonnative.yml +++ b/.github/workflows/nonnative.yml @@ -49,5 +49,5 @@ jobs: with: files: .coverage/coverage.xml name: "Ubuntu nonnative" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true diff --git a/.github/workflows/os_comp.yml b/.github/workflows/os_comp.yml index 46cbf0df6..d12e54ca2 100644 --- a/.github/workflows/os_comp.yml +++ b/.github/workflows/os_comp.yml @@ -62,7 +62,7 @@ jobs: with: files: .coverage/coverage.xml name: "OS Comp [${{ matrix.cfg.name }}]" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true pypy: @@ -162,5 +162,5 @@ jobs: with: files: .coverage/coverage.xml name: "Ubuntu [${{ matrix.cfg.CC }} ${{ matrix.cfg.RUN_TESTS_ARGS }} ${{ matrix.cfg.MESON_ARGS }}]" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true diff --git a/.github/workflows/unusedargs_missingreturn.yml b/.github/workflows/unusedargs_missingreturn.yml index a0e6f9037..d823c310e 100644 --- a/.github/workflows/unusedargs_missingreturn.yml +++ b/.github/workflows/unusedargs_missingreturn.yml @@ -65,7 +65,7 @@ jobs: with: files: .coverage/coverage.xml name: "UnusedMissingReturn" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true windows: @@ -94,5 +94,5 @@ jobs: with: files: .coverage/coverage.xml name: "UnusedMissingReturn Windows" - fail_ci_if_error: true + fail_ci_if_error: false verbose: true |
