From d3382ee59a856c53fbdb487e617007170f1ce9a1 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Thu, 13 Apr 2023 15:16:52 +0200 Subject: [PATCH] Do not perform ci build/tests during merge_requests if the branch name starts with notest- (because we know the modifications have no impact on these tests) --- .gitlab/common.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab/common.yml b/.gitlab/common.yml index f55aeb523..67b9defe5 100644 --- a/.gitlab/common.yml +++ b/.gitlab/common.yml @@ -12,6 +12,8 @@ default: only: - master@solverstack/chameleon - /^ci-.*$/ + except: + - /^notest-.*$/ .only-branches: except: ['schedule'] @@ -20,6 +22,8 @@ default: - merge_requests - master@solverstack/chameleon - /^ci-.*$/ + except: + - /^notest-.*$/ .build_script_template: stage: build -- GitLab