Skip to content

Commit

Permalink
[ci] Add option to not run tests via CI_TAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
akoeplinger committed Oct 18, 2016
1 parent 03356ab commit 7b2dcda
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/ci/run-jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7b2dcda

Please sign in to comment.