summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorDaniel Schürmann <daschuer@mixxx.org>2020-11-23 08:51:02 +0100
committerGitHub <noreply@github.com>2020-11-23 08:51:02 +0100
commit0a0bdc79063c93ba4dfe798000537267119d6098 (patch)
treea7311e9b9689efe567385e73759da68bf4ecdaac /.github
parent5567584109076d8e1b53d384f56e8e09a8f707fb (diff)
parent7211bd4b8e1531f9f35e8f32d8d6e549eae6189d (diff)
Merge pull request #3357 from uklotzde/clazy_error_limit
GitHub CI: Don't abort clazy build on errors
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