From 6d8ec5aee31f8eff0288e598372ab94397741a03 Mon Sep 17 00:00:00 2001 From: NRK Date: Fri, 29 Jul 2022 03:37:40 +0200 Subject: [ci]: fix failure (#348) * install unversioned `llvm` so that it pulls the latest one. * disable `uninitvar` check on cppcheck as it catches some false positives and gcc/clang/clang-tidy are good at catching uninitialized variables already. Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/348 Reviewed-by: explosion-mental --- .woodpecker/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.woodpecker/analysis.yml') diff --git a/.woodpecker/analysis.yml b/.woodpecker/analysis.yml index 56cc7b1..c6fa796 100644 --- a/.woodpecker/analysis.yml +++ b/.woodpecker/analysis.yml @@ -14,7 +14,7 @@ pipeline: --force --quiet --inline-suppr --error-exitcode=1 \ --max-ctu-depth=8 -j"$(nproc)" \ $(make OPT_DEP_DEFAULT="$1" dump_cppflags) \ - --suppress=varFuncNullUB \ + --suppress=varFuncNullUB --suppress=uninitvar \ *.c } run_tidy() { -- cgit v1.2.3-54-g00ecf