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