forked from checkstyle/checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shippable.yml
61 lines (55 loc) · 1.9 KB
/
shippable.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
language: java
jdk:
- oraclejdk8
env:
matrix:
# we skip openjdk till we find way to install "hg" to shippable image
#- CMD="./.ci/shippable.sh no-exception-openjdk7-openjdk8"
- CMD="./.ci/shippable.sh no-exception-openjdk9-lucene-and-others"
- CMD="./.ci/shippable.sh no-exception-cassandra-storm-tapestry"
- CMD="./.ci/shippable.sh no-exception-hadoop-apache-groovy-scouter"
- CMD="./.ci/shippable.sh no-exception-only-javadoc"
branches:
only:
- master
build:
cache: true
cache_dir_list:
- /root/.m2
- /root/groovy-2.4.7
# default is drydock/u14javall with jdk 1.8.0.25
# that make pitest make different results with latest jdk builds,
# "v5.9.4" is latest jdk8_144, versions above 5.9.4 use jdk9
pre_ci_boot:
image_name: drydock/u16javall
image_tag: v5.9.4
ci:
# we skip PRs and commits that are not for Issues, as pitest is too time consuming
- |
set -e
pwd
ls -la
if [ ! -d /root/groovy-2.4.7 ]; then
wget https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.4.7.zip
unzip apache-groovy-binary-2.4.7.zip -d /root/
fi
# load custom PATH
export PATH=/root/groovy-2.4.7/bin:$PATH
SKIP_FILES1="appveyor.yml|codeship-*|buddy.yml|circleci|.travis.yml"
SKIP_FILES2="|wercker.yml|wercker.sh|fast-forward-merge.sh|LICENSE|LICENSE.apache20|README.md"
SKIP_FILES3="|release.sh|RIGHTS.antlr|intellij-idea-inspections.xml"
SKIP_FILES4="|org.eclipse.jdt.core.prefs"
SKIP_FILES5="|Jenkinsfile"
SKIP_FILES=$SKIP_FILES1$SKIP_FILES2$SKIP_FILES3$SKIP_FILES4$SKIP_FILES5
#source ./.ci/common.sh
#should_run_job "recheck" $SKIP_FILES
export RUN_JOB=1
if [[ $RUN_JOB == 1 ]];
then
echo "eval of CMD is starting"
echo "CMD=$CMD"
eval $CMD
echo "eval of CMD is completed"
else
echo "Build is skipped"
fi