From 142f24043d9edf0306679b615f53e7790df164e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 16 Apr 2019 13:06:38 +0100 Subject: [PATCH] gitlab/ci_template: only run valgrind for MRs not master and stable branches The valgrind runs are there to spot obvious problems during the dev phase, not sure we really need to run them in full after each merge. Should reduce load on the build bots a little. If any problems slip in they will be picked up soon enough by the MR jobs again. --- gitlab/ci_template.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gitlab/ci_template.yml b/gitlab/ci_template.yml index fe573a547b..2b304e1962 100644 --- a/gitlab/ci_template.yml +++ b/gitlab/ci_template.yml @@ -227,6 +227,9 @@ integration testsuites fedora: EXTRA_VALIDATE_ARGS: "--valgrind" # Some suppression files are missing a newline at the end which messes things # up when concatenating them. awk will add missing newlines (unlike cat) + except: + variables: + - $CI_PROJECT_NAMESPACE == 'gstreamer' valgrind core: extends: '.valgrind fedora x86_64' -- 2.34.1