summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-11-23 01:23:09 +0100
committerUwe Klotz <uklotz@mixxx.org>2020-11-23 01:56:24 +0100
commit7211bd4b8e1531f9f35e8f32d8d6e549eae6189d (patch)
tree05422bee431ca19ec6d0a3d6d8b8db40d774034b /.github
parentaf5ed092f1ab16ba4c9a0ff8b76766e3805f620c (diff)
GitHub CI: Don't abort clazy build on errors (2nd attempt)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/clazy.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/clazy.yml b/.github/workflows/clazy.yml
index 8c5a08c1f3..59ea855cd0 100644
--- a/.github/workflows/clazy.yml
+++ b/.github/workflows/clazy.yml
@@ -79,7 +79,8 @@ jobs:
- name: Set up problem matcher
uses: ammaraskar/gcc-problem-matcher@master
- name: Build
- run: cmake --build . -j $(nproc)
+ # Do not abort on errors and build/check the whole project
+ run: cmake --build . -j $(nproc) -- --keep-going
working-directory: cmake_build
env:
CLAZY_CHECKS: level2,no-rule-of-two-soft,no-non-pod-global-static,no-qproperty-without-notify,no-wrong-qevent-cast,no-qstring-allocations,no-function-args-by-value,no-copyable-polymorphic,no-ctor-missing-parent-argument,no-missing-qobject-macro,no-rule-of-three,no-returning-void-expression,no-missing-typeinfo,no-base-class-event