From 8655cf162a93cc2909da00cca48c58d50f2b0526 Mon Sep 17 00:00:00 2001 From: intrigeri Date: Sun, 13 Feb 2022 13:09:32 +0000 Subject: [PATCH] CI: disable flawfinder SAST analyzer It reports hundreds of issues, lots of them with critical severity. The GitLab UI allows dismissing them one-by-one very quickly, but I'm not a good person to do that. Let's try to have a better signal/noise ratio for this first iteration. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 707f8c9ae..24c000742 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -134,4 +134,4 @@ include: - template: Secret-Detection.gitlab-ci.yml variables: - SAST_EXCLUDED_ANALYZERS: "spotbugs" + SAST_EXCLUDED_ANALYZERS: "flawfinder,spotbugs"