From dafb68f306b62ac483faf3b4c2ecb9cb021bc1b5 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 21 Feb 2020 10:37:56 +1000 Subject: [PATCH] gitlab CI: don't run meson test on the scan-build job Unfortunate side-effect of this: scan-build would store the logs in the build dir, only for them to be immediately wiped by meson test. And that never generated the scan-build warnings. So this job was complaining about (minor) issues for a while, they just never made it to the GUI as CI failures. Signed-off-by: Peter Hutterer --- .gitlab-ci.yml | 1 + .gitlab-ci/gitlab-ci.tmpl | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 259728b..d056299 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -655,6 +655,7 @@ scan-build@fedora:30: - .fedora-build@template variables: NINJA_ARGS: scan-build + MESON_TEST_ARGS: '' before_script: - dnf install -y clang-analyzer findutils after_script: diff --git a/.gitlab-ci/gitlab-ci.tmpl b/.gitlab-ci/gitlab-ci.tmpl index daa5dd5..a744eb5 100644 --- a/.gitlab-ci/gitlab-ci.tmpl +++ b/.gitlab-ci/gitlab-ci.tmpl @@ -483,6 +483,7 @@ scan-build@fedora:30: - .fedora-build@template variables: NINJA_ARGS: scan-build + MESON_TEST_ARGS: '' before_script: - dnf install -y clang-analyzer findutils after_script: -- 2.7.4