aboutsummaryrefslogtreecommitdiff
path: root/shippable.yml
diff options
context:
space:
mode:
authorRoman Ivanov <ivanov-jr@mail.ru>2017-09-02 10:43:11 -0700
committerRoman Ivanov <ivanov-jr@mail.ru>2017-09-02 10:43:16 -0700
commit71f553f88872def0f0035019569a1f6ddb639159 (patch)
treec6733ab515c7e3bf651d52b99f0c22f50535e621 /shippable.yml
parent01c205b252a17606e0ff28c05c71bc00d73c7c81 (diff)
downloadcheckstyle-71f553f88872def0f0035019569a1f6ddb639159.tar.gz
Issue #2600: extend list of skip files for all CI expect Travis
Diffstat (limited to 'shippable.yml')
-rw-r--r--shippable.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/shippable.yml b/shippable.yml
index ae632b1f8..ed6697404 100644
--- a/shippable.yml
+++ b/shippable.yml
@@ -43,7 +43,7 @@ build:
# we skip PRs and commits that are not for Issues, as pitest is too time consuming
- |
set -e
- SKIP_FILES="appveyor.yml|circle.yml|distelli-manifest.yml|.travis.yml|wercker.yml|fast-forward-merge.sh|LICENSE|LICENSE.apache20|README.md|release.sh|RIGHTS.antlr|intellij-idea-inspections.xml"
+ SKIP_FILES="appveyor.yml|circle.yml|distelli-manifest.yml|.travis.yml|wercker.yml|fast-forward-merge.sh|LICENSE|LICENSE.apache20|README.md|release.sh|RIGHTS.antlr|intellij-idea-inspections.xml|org.eclipse.jdt.core.prefs"
SKIP_CI=$(if [[ $(git diff --name-only HEAD HEAD~1 | grep -vE "$SKIP_FILES" | cat | wc -c) > 0 ]]; then echo false; else echo true; fi;)
echo "SKIP_CI="$SKIP_CI
echo "POST_ACTION="$POST_ACTION