File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ _check_skip_job: &check_skip_job
47
47
cd /tmp/src/fmriprep
48
48
COMMIT_MSG="$(git show -s --format=%s)"
49
49
DOCBUILD="$(echo ${COMMIT_MSG} | grep -i -E '^docs?(\(\w+\))?:')"
50
+ SKIP_ALL="$(echo ${COMMIT_MSG} | grep -i -E '\[skipcircle\]')"
50
51
SKIP_PYTEST="$(echo ${COMMIT_MSG} | grep -i -E '\[skip[ _]?tests\]')"
51
52
SKIP_DS005="$(echo ${COMMIT_MSG} | grep -i -E '\[skip[ _]?ds005\]' )"
52
53
SKIP_DS054="$(echo ${COMMIT_MSG} | grep -i -E '\[skip[ _]?ds054\]' )"
@@ -62,6 +63,9 @@ _check_skip_job: &check_skip_job
62
63
elif [[ -n "$DOCSBUILD" ]]; then # always try to skip docs builds
63
64
echo "Only docs build"
64
65
circleci step halt
66
+ elif [ -n "$SKIP_ALL" ]; then
67
+ echo "Skipping all!"
68
+ circleci step halt
65
69
elif [ -n "$CHECK_PYTEST" -a -n "$SKIP_PYTEST" ]; then
66
70
echo "Skipping pytest"
67
71
circleci step halt
You can’t perform that action at this time.
0 commit comments