summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-11-22 21:16:26 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-11-22 22:34:40 +0100
commit5338b2cfc5812ffc6105790cd0d664e40fc9b115 (patch)
tree35b9b90e6ddb4505578abb28d620372affb8c742 /.github
parent5311b4ed942cd136cd1b7e0319c0c041f69e66fc (diff)
GitHub CI: Don't abort clazy build on errors
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/clazy.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/clazy.yml b/.github/workflows/clazy.yml
index 8c5a08c1f3..59a5cb444e 100644
--- a/.github/workflows/clazy.yml
+++ b/.github/workflows/clazy.yml
@@ -50,9 +50,11 @@ jobs:
- name: Create build directory
run: mkdir cmake_build
- name: Configure
- # Disable optimizations as workaround for Clang 9 bug: https://bugs.llvm.org/show_bug.cgi?id=45034
+ # -DOPTIMIZE=off: Disable optimizations as workaround for Clang 9 bug: https://bugs.llvm.org/show_bug.cgi?id=45034
+ # -ferror-limit=0: Disable aborting on errors
run: |
cmake \
+ -DCMAKE_CXX_FLAGS="-ferror-limit=0" \
-DCMAKE_BUILD_TYPE=Debug \
-DWARNINGS_FATAL=ON \
-DOPTIMIZE=off \