-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.xml
392 lines (333 loc) · 15.3 KB
/
build.xml
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<?xml version="1.0" encoding="UTF-8"?>
<project name="rhubarb-project" default="build">
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
<!-- Repository access for status updating -->
<property name="git.provider" value="github"/>
<property name="git.owner" value="rhubarbphp"/>
<property name="git.repos" value="module.stem"/>
<!-- Locations of important commands -->
<condition property="batfile" value=".bat">
<os family="windows"/>
</condition>
<condition property="batfile" value="">
<not><os family="windows"/></not>
</condition>
<condition property="phpcs-ruleset" value="phpcs-ruleset-win">
<os family="windows"/>
</condition>
<condition property="phpcs-ruleset" value="phpcs-ruleset">
<not><os family="windows"/></not>
</condition>
<property name="pdepend" value="${basedir}/bin/pdepend${batfile}"/>
<property name="phpcpd" value="${basedir}/bin/phpcpd${batfile}"/>
<property name="phpcs" value="${basedir}/bin/phpcs${batfile}"/>
<property name="phpdox" value="${basedir}/bin/phpdox${batfile}"/>
<property name="phploc" value="${basedir}/bin/phploc${batfile}"/>
<property name="phpmd" value="${basedir}/bin/phpmd${batfile}"/>
<property name="phpunit" value="${basedir}/bin/phpunit${batfile}"/>
<property name="codecept" value="${basedir}/bin/codecept${batfile}"/>
<property name="custard" value="${basedir}/bin/custard${batfile}"/>
<!-- Import environment variables -->
<property environment="env"/>
<!-- Top level targets for jenkins -->
<target name="build" depends="set-build-status-pending,prepare,static-analysis-cli,codecept,-check-tests,set-build-status-success,set-build-status-failure,-fail" />
<!-- Top level targets for developers to test their build against the build failure conditions -->
<target name="check" depends="static-analysis-cli,codecept,-check-tests,-fail" />
<target name="check-tests" depends="codecept,-check-tests,-fail" />
<!-- Chains of build commands used by top level targets -->
<target name="build-complete"
depends="prepare,static-analysis,codecept-covered,phpdox" />
<target name="build-quick"
depends="prepare,static-analysis,codecept"
description="Performs static analysis, runs the tests, and generates project documentation"/>
<target name="static-analysis"
depends="lint,phploc-ci,pdepend,phpmd-ci,phpcs-ci,phpcpd-ci"
description="Performs static analysis" />
<target name="static-analysis-cli"
depends="phpmd,phpcs,phpcpd"
description="Performs static analysis" />
<!-- Adjust the threadCount attribute's value to the number of CPUs -->
<target name="static-analysis-parallel"
description="Performs static analysis (executing the tools in parallel)">
<parallel threadCount="2">
<sequential>
<antcall target="pdepend"/>
<antcall target="phpmd-ci"/>
</sequential>
<antcall target="lint"/>
<antcall target="phpcpd-ci"/>
<antcall target="phpcs-ci"/>
<antcall target="phploc-ci"/>
</parallel>
</target>
<target name="static-analysis-parallel-cli"
description="Performs static analysis (executing the tools in parallel) on the CLI">
<parallel threadCount="2">
<antcall target="phpmd"/>
<antcall target="phpcpd"/>
<antcall target="phpcs"/>
</parallel>
</target>
<!-- Targets for updating the git repos provider with build status details -->
<target name="set-build-status-pending">
<exec executable="${custard}">
<arg value="-c=\Rhubarb\BuildStatusUpdater\Custard\UpdateBuildStatusCommand" />
<arg value='build:update-status' />
<arg value="${git.provider}" />
<arg value="${git.owner}" />
<arg value="${git.repos}" />
<arg value="${env.GIT_COMMIT}" />
<arg value="jenkins-build-${env.BUILD_NUMBER}" />
<arg value="pending" />
<arg value="${env.BUILD_URL}" />
<arg value="The build is... building." />
<arg value="-u${env.GIT_USERNAME}" />
<arg value="-p${env.GIT_PASSWORD}" />
</exec>
</target>
<target name="set-build-status-success" unless="error">
<exec executable="${custard}">
<arg value="-c=\Rhubarb\BuildStatusUpdater\Custard\UpdateBuildStatusCommand" />
<arg value='build:update-status' />
<arg value="${git.provider}" />
<arg value="${git.owner}" />
<arg value="${git.repos}" />
<arg value="${env.GIT_COMMIT}" />
<arg value="jenkins-build-${env.BUILD_NUMBER}" />
<arg value="success" />
<arg value="${env.BUILD_URL}" />
<arg value="The build succeeded!" />
<arg value="-u${env.GIT_USERNAME}" />
<arg value="-p${env.GIT_PASSWORD}" />
</exec>
</target>
<target name="set-build-status-failure" if="error">
<exec executable="${custard}">
<arg value="-c=\Rhubarb\BuildStatusUpdater\Custard\UpdateBuildStatusCommand" />
<arg value='build:update-status' />
<arg value="${git.provider}" />
<arg value="${git.owner}" />
<arg value="${git.repos}" />
<arg value="${env.GIT_COMMIT}" />
<arg value="jenkins-build-${env.BUILD_NUMBER}" />
<arg value="failure" />
<arg value="${env.BUILD_URL}" />
<arg value="The build failed." />
<arg value="-u${env.GIT_USERNAME}" />
<arg value="-p${env.GIT_PASSWORD}" />
</exec>
</target>
<!--
Individual build tasks start here.
// -->
<target name="clean"
unless="clean.done"
description="Cleanup build artifacts">
<delete dir="${basedir}/build/phpunit"/>
<delete dir="${basedir}/build/behat"/>
<delete dir="${basedir}/build/phploc"/>
<delete dir="${basedir}/build/pmd"/>
<delete dir="${basedir}/build/phpcs"/>
<delete dir="${basedir}/build/phpcpd"/>
<delete dir="${basedir}/build/coverage"/>
<delete dir="${basedir}/build/pdepend"/>
<delete dir="${basedir}/build/phpdox"/>
<delete>
<fileset dir="${basedir}/build" includes="*.zip"/>
</delete>
<property name="clean.done" value="true"/>
</target>
<target name="prepare"
unless="prepare.done"
depends="clean"
description="Prepare for build">
<mkdir dir="${basedir}/build/phpunit"/>
<mkdir dir="${basedir}/build/behat"/>
<mkdir dir="${basedir}/build/phploc"/>
<mkdir dir="${basedir}/build/phpcs"/>
<mkdir dir="${basedir}/build/phpcpd"/>
<mkdir dir="${basedir}/build/pmd"/>
<mkdir dir="${basedir}/build/coverage"/>
<mkdir dir="${basedir}/build/pdepend"/>
<mkdir dir="${basedir}/build/phpdox"/>
<property name="prepare.done" value="true"/>
</target>
<target name="lint"
unless="lint.done"
description="Perform syntax check of sourcecode files">
<apply executable="php" taskname="lint">
<arg value="-l" />
<fileset dir="${basedir}/src">
<include name="**/*.php" />
<modified />
</fileset>
<fileset dir="${basedir}/tests">
<include name="**/*.php" />
<modified />
</fileset>
</apply>
<property name="lint.done" value="true"/>
</target>
<target name="phploc"
unless="phploc.done"
description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phploc.done" value="true"/>
</target>
<target name="phploc-ci"
unless="phploc.done"
depends="prepare"
description="Measure project size using PHPLOC and log result in CSV and XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests" />
<arg value="--log-csv" />
<arg path="${basedir}/build/phploc/phploc.csv" />
<arg value="--log-xml" />
<arg path="${basedir}/build/phploc/phploc.xml" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phploc.done" value="true"/>
</target>
<target name="pdepend"
unless="pdepend.done"
depends="prepare"
description="Calculate software metrics using PHP_Depend and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${pdepend}" taskname="pdepend">
<arg value="--jdepend-xml=${basedir}/build/pdepend/jdepend.xml" />
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg" />
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg" />
<arg path="${basedir}/src" />
</exec>
<property name="pdepend.done" value="true"/>
</target>
<target name="phpmd"
unless="phpmd.done"
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpmd}" resultproperty="result.php-md" taskname="phpmd">
<arg path="${basedir}/src" />
<arg value="text" />
<arg path="${basedir}/build/phpmd.xml" />
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpmd-ci"
unless="phpmd.done"
depends="prepare"
description="Perform project mess detection using PHPMD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpmd}" resultproperty="result.php-md" taskname="phpmd">
<arg path="${basedir}/src" />
<arg value="xml" />
<arg path="${basedir}/build/phpmd.xml" />
<arg value="--reportfile" />
<arg path="${basedir}/build/pmd/pmd.xml" />
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpcs"
unless="phpcs.done"
description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpcs}" resultproperty="result.php-cs" taskname="phpcs">
<arg value="--standard=build/${phpcs-ruleset}.xml" />
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg value="--warning-severity=0"/>
<arg path="${basedir}/src" />
<arg path="${basedir}/tests/unit" />
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="phpcs-ci"
unless="phpcs.done"
depends="prepare"
description="Find coding standard violations using PHP_CodeSniffer and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcs}" resultproperty="result.php-cs" taskname="phpcs">
<arg value="--report=checkstyle" />
<arg value="--report-file=${basedir}/build/phpcs/phpcs.xml" />
<arg value="--standard=build/${phpcs-ruleset}.xml" />
<arg value="--warning-severity=0"/>
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests/unit" />
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="phpcpd"
unless="phpcpd.done"
description="Find duplicate code using PHPCPD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpcpd}" resultproperty="result.php-cpd" taskname="phpcpd">
<arg path="${basedir}/src" />
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="phpcpd-ci"
unless="phpcpd.done"
depends="prepare"
description="Find duplicate code using PHPCPD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcpd}" resultproperty="result.php-cpd" taskname="phpcpd">
<arg value="--log-pmd" />
<arg path="${basedir}/build/phpcpd/pmd-cpd.xml" />
<arg path="${basedir}/src" />
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="codecept"
unless="codecept.done"
depends="prepare"
description="Run codeception tests">
<exec executable="${codecept}" resultproperty="result.codecept" taskname="codecept">
<arg value="run"/>
<arg value="unit,functional"/>
<arg value="--xml"/>
</exec>
<property name="codecept.done" value="true"/>
</target>
<target name="codecept-covered"
unless="codecept.done"
depends="prepare"
description="Run codeception tests">
<exec executable="${codecept}" resultproperty="result.codecept" taskname="codecept">
<arg value="run"/>
<arg value="unit,functional"/>
<arg value="--xml"/>
<arg value="--coverage"/>
<arg value="--coverage-xml"/>
<arg value="--coverage-html"/>
</exec>
<property name="codecept.done" value="true"/>
</target>
<target name="phpdox"
unless="phpdox.done"
depends="phploc-ci,phpcs-ci,phpmd-ci"
description="Generate project documentation using phpDox">
<exec executable="${phpdox}">
<arg value="--file" />
<arg value="${basedir}/build/phpdox.xml" />
</exec>
<property name="phpdox.done" value="true"/>
</target>
<target name="-check-tests">
<condition property="error" value="Codeception did not finish successfully">
<not><equals arg1="${result.codecept}" arg2="0" /></not>
</condition>
</target>
<target name="-check-quality">
<condition property="error" value="PHP Mess Detector detected violations!">
<not><equals arg1="${result.php-md}" arg2="0" /></not>
</condition>
<condition property="error" value="PHP Code Sniffer detected violations!">
<not><equals arg1="${result.php-cs}" arg2="0" /></not>
</condition>
<condition property="error" value="PHP Cut-and-Paste Detector detected violations!">
<not><equals arg1="${result.php-cpd}" arg2="0" /></not>
</condition>
</target>
<target name="-fail" if="error">
<fail message="${error}"/>
</target>
</project>