forked from checkstyle/checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wercker.yml
254 lines (230 loc) · 7.86 KB
/
wercker.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
box: maven:3.5.2-jdk-8
build:
steps:
- script:
name: setup maven local repo
code: |
export MAVEN_OPTS="-Dmaven.repo.local=${WERCKER_CACHE_DIR}"
mvn -version
echo "------"
du -hs ${WERCKER_CACHE_DIR}
echo "------"
du -hs ${WERCKER_CACHE_DIR}/* | sort -h
- script:
name: install groovy
code: |
if [ ! -d ${WERCKER_CACHE_DIR}/groovy ]; then
GROOVY_LINK="https://dl.bintray.com/groovy/maven/apache-groovy-binary-2.4.7.zip"
wget -O ${WERCKER_CACHE_DIR}/groovy.zip $GROOVY_LINK;
unzip ${WERCKER_CACHE_DIR}/groovy.zip -d ${WERCKER_CACHE_DIR};
mv ${WERCKER_CACHE_DIR}/groovy-2.4.7 ${WERCKER_CACHE_DIR}/groovy
fi
export GROOVY_HOME=${WERCKER_CACHE_DIR}/groovy
PATH=$GROOVY_HOME/bin:$PATH
groovy -v
- script:
name: Build Checkstyle
code: |
SKIP_FILES1="appveyor.yml|codeship-*|buddy.yml|circleci|travis"
SKIP_FILES2="|shippable|sonar-|fast-forward-merge.sh|LICENSE|LICENSE.apache20"
SKIP_FILES3="|README.md|release.sh|RIGHTS.antlr|intellij-idea-inspections.xml"
SKIP_FILES4="|org.eclipse.jdt.core.prefs|distelli-manifest.yml|jsoref-spellchecker"
SKIP_FILES5="|check-only-javadoc-error.sh|eclipse-compiler-javac.sh|idea_inspection"
SKIP_FILES6="|test-spelling-unknown-words.sh|Jenkinsfile"
SKIP_FILES=$SKIP_FILES1$SKIP_FILES2$SKIP_FILES3$SKIP_FILES4$SKIP_FILES5$SKIP_FILES6
export SKIP_CI=false;
if [[ $(git diff --name-only HEAD HEAD~1 | grep -vE "$SKIP_FILES" | cat | wc -c) > 0 ]];
then
SKIP_CI=false;
else
SKIP_CI=true;
fi
echo "SKIP_CI="$SKIP_CI
if [[ $SKIP_CI == 'false' ]]; then
mvn -e clean install -Pno-validations
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Postgresql JDBC Driver
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-pgjdbc"
./.ci/wercker.sh no-error-pgjdbc
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Orekit
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-orekit"
./.ci/wercker.sh no-error-orekit
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - XWiki
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-xwiki"
./.ci/wercker.sh no-error-xwiki
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Apache Apex
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-apex-core"
./.ci/wercker.sh no-error-apex-core
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Hibernate Search
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-hibernate-search"
./.ci/wercker.sh no-error-hibernate-search
else
echo "build is skipped ..."
fi
# Disabled as it result in "svn: E175002: Unexpected HTTP status 429 'Too Many Requests'"
# even for "svn checkout -r 14923 ...."
# - script:
# name: NoErrorTest - HtmlUnit
# code: |
# if [[ $SKIP_CI == 'false' ]]; then
# echo "Command: ./.ci/wercker.sh no-error-htmlunit"
# ./.ci/wercker.sh no-error-htmlunit
# else
# echo "build is skipped ..."
# fi
- script:
name: NoErrorTest - checkstyle's sevntu
code: |
if [[ 'true' == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-error-checkstyles-sevntu"
./.ci/wercker.sh no-error-checkstyles-sevntu
else
echo "build is skipped ..."
fi
# - script:
# name: NoErrorTest - sevntu-checks
# code: |
# if [[ $SKIP_CI == 'false' ]]; then
# echo "Command: ./.ci/wercker.sh no-error-sevntu-checks"
# ./.ci/wercker.sh no-error-sevntu-checks
# else
# echo "build is skipped ..."
# fi
- script:
name: NoExceptiontest - Apache Struts
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-struts"
./.ci/wercker.sh no-exception-struts
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Checkstyle ,sevntu-checkstyle
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-checkstyle-sevntu"
./.ci/wercker.sh no-exception-checkstyle-sevntu
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Guava
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh ./.ci/wercker.sh no-exception-guava"
./.ci/wercker.sh no-exception-guava
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Hibernate
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-hibernate-orm"
./.ci/wercker.sh no-exception-hibernate-orm
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - spotbugs
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-spotbugs"
./.ci/wercker.sh no-exception-spotbugs
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - spring-framework
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-spring-framework"
./.ci/wercker.sh no-exception-spring-framework
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Hbase
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-hbase"
./.ci/wercker.sh no-exception-hbase
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - pmd elasticsearch lombok-ast
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-Pmd-elasticsearch-lombok-ast"
./.ci/wercker.sh no-exception-Pmd-elasticsearch-lombok-ast
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - RxJava apache-ant apache-jsecurity android-launcher ....
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-exception-alot-of-projects"
./.ci/wercker.sh no-exception-alot-of-projects
else
echo "build is skipped ..."
fi
- script:
name: NoWarningTest - guava imports ....
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-warning-imports-guava"
./.ci/wercker.sh no-warning-imports-guava
else
echo "build is skipped ..."
fi
- script:
name: NoWarningTest - java-design-patterns imports....
code: |
if [[ $SKIP_CI == 'false' ]]; then
echo "Command: ./.ci/wercker.sh no-warning-imports-java-design-patterns"
./.ci/wercker.sh no-warning-imports-java-design-patterns
else
echo "build is skipped ..."
fi
- script:
name: Cleanup maven local repo
code: |
find ${WERCKER_CACHE_DIR} -type d -name "*SNAPSHOT" -ls -exec rm -rf {} +
echo "------"
du -hs ${WERCKER_CACHE_DIR}
echo "------"
du -hs ${WERCKER_CACHE_DIR}/* | sort -h
echo "------"
du -hs * | sort -h