From 7b2dcdae0d4b440885cf52cb89f4aea614189ffa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 18 Oct 2016 16:00:49 +0200 Subject: [PATCH] [ci] Add option to not run tests via CI_TAGS --- scripts/ci/run-jenkins.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/ci/run-jenkins.sh b/scripts/ci/run-jenkins.sh index ab17183b1b0b..bc1f8168c6b1 100755 --- a/scripts/ci/run-jenkins.sh +++ b/scripts/ci/run-jenkins.sh @@ -62,6 +62,9 @@ if [[ ${CI_TAGS} == *'acceptance-tests'* ]]; elif [[ ${CI_TAGS} == *'profiler-stress-tests'* ]]; then $(dirname "${BASH_SOURCE[0]}")/run-test-profiler-stress-tests.sh +elif [[ ${CI_TAGS} == *'no-tests'* ]]; + then + exit 0 else make check-ci fi