forked from checkstyle/checkstyle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wercker.yml
369 lines (334 loc) · 11.1 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
box: maven:3.6.3-jdk-11
build:
steps:
- script:
name: setup maven local repo
code: |
export MAVEN_OPTS="-Dmaven.repo.local=${WERCKER_CACHE_DIR}"
mvn -version
echo "------"
if [[ $(grep "pull" .git/FETCH_HEAD | cat | wc -l) > 0 ]]; then
export PR=$(cat .git/FETCH_HEAD | cut -d ' ' -f 1 | cut -d '/' -f 3)
echo "PR:"$PR
fi
echo "------"
echo "Specify Maven Local location ${WERCKER_CACHE_DIR} for Gradle builds"
export GRADLE_OPTS="$GRADLE_OPTS -Dmaven.repo.local=${WERCKER_CACHE_DIR}"
echo "------"
du -hs ${WERCKER_CACHE_DIR}
echo "------"
du -hs ${WERCKER_CACHE_DIR}/* | sort -h
- script:
name: install jq
code: |
curl -L http://stedolan.github.io/jq/download/linux64/jq -o /usr/local/bin/jq
chmod +x /usr/local/bin/jq
- 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|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 RUN_JOB=1
source ./.ci/common.sh
# should_run_job will change RUN_JOB variable
should_run_job "recheck" $SKIP_FILES
if [[ $RUN_JOB == 1 ]]; then
mvn -e clean install -Pno-validations
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Postgresql JDBC Driver
code: |
if [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-xwiki"
./.ci/wercker.sh no-error-xwiki
else
echo "build is skipped ..."
fi
# disabled till https://github.com/checkstyle/checkstyle/issues/7815
# - script:
# name: NoErrorTest - Apache Apex
# code: |
# if [[ $RUN_JOB == 1 ]]; then
# echo "Command: ./.ci/wercker.sh no-error-apex-core"
# ./.ci/wercker.sh no-error-apex-core
# else
# echo "build is skipped ..."
# fi
# disabled till project migrate to config of 8.28
# - script:
# name: NoErrorTest - Strata
# code: |
# if [[ $RUN_JOB == 1 ]]; then
# echo "Command: ./.ci/wercker.sh no-error-strata"
# ./.ci/wercker.sh no-error-strata
# else
# echo "build is skipped ..."
# fi
- script:
name: NoErrorTest - Hibernate Search
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-hibernate-search"
./.ci/wercker.sh no-error-hibernate-search
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - EqualsVerifier
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-equalsverifier"
./.ci/wercker.sh no-error-equalsverifier
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - Spring Integration
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-spring-integration"
./.ci/wercker.sh no-error-spring-integration
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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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: NoErrorTest - contribution
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-contribution"
./.ci/wercker.sh no-error-contribution
else
echo "build is skipped ..."
fi
- script:
name: NoErrorTest - methods distance
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-error-methods-distance"
./.ci/wercker.sh no-error-methods-distance
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Apache Struts
code: |
if [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 - Checkstyle ,sevntu-checkstyle javadoc
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-exception-checkstyle-sevntu-javadoc"
./.ci/wercker.sh no-exception-checkstyle-sevntu-javadoc
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - Guava
code: |
if [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-exception-spotbugs"
./.ci/wercker.sh no-exception-spotbugs
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - spoon
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh no-exception-spoon"
./.ci/wercker.sh no-exception-spoon
else
echo "build is skipped ..."
fi
- script:
name: NoExceptiontest - spring-framework
code: |
if [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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 [[ $RUN_JOB == 1 ]]; 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: Sonarqube validation
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh sonarqube"
./.ci/wercker.sh sonarqube
else
echo "build is skipped ..."
fi
- script:
name: Empty .ci-temp validation
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh validate-ci-temp-empty"
./.ci/wercker.sh validate-ci-temp-empty
else
echo "build is skipped ..."
fi
- script:
name: Cleanup maven local repo
code: |
echo "git status"
git status
echo "------"
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
- script:
name: git-status
code: |
if [[ $RUN_JOB == 1 ]]; then
echo "Command: ./.ci/wercker.sh git-status"
./.ci/wercker.sh git-status
else
echo "build is skipped ..."
fi