forked from Cocolabs-SAS/cocorico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
240 lines (205 loc) · 9.14 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="name-of-project" default="build">
<property name="composer.path" value="${basedir}/composer.phar"/>
<property name="selenium.path" value="${basedir}/bin/selenium-server.jar"/>
<property name="chrome.path" value="${basedir}/bin/chromedriver"/>
<property name="php.cmd" value="php54"/>
<target name="build"
depends="prepare,composer,vendors,lint,phploc,pdepend,phpmd-ci,phpcs-ci,phpcpd,phpdoc,parameters,database,assetic,cache,assets,selenium,selenium-start,behat,phpunit,phpcb"/>
<target name="build-parallel" depends="prepare,lint,tools-parallel,phpunit,phpcb"/>
<target name="tools-parallel" description="Run tools in parallel">
<parallel threadCount="2">
<sequential>
<antcall target="pdepend"/>
<antcall target="phpmd-ci"/>
</sequential>
<antcall target="phpcpd"/>
<antcall target="phpcs-ci"/>
<antcall target="phploc"/>
<antcall target="phpdoc"/>
</parallel>
</target>
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/app/build/api"/>
<delete dir="${basedir}/app/build/code-browser"/>
<delete dir="${basedir}/app/build/coverage"/>
<delete dir="${basedir}/app/build/logs"/>
<delete dir="${basedir}/app/build/pdepend"/>
<delete dir="${basedir}/app/build/behat"/>
</target>
<target name="prepare" depends="clean" description="Prepare for build">
<mkdir dir="${basedir}/app/build/api"/>
<mkdir dir="${basedir}/app/build/code-browser"/>
<mkdir dir="${basedir}/app/build/coverage"/>
<mkdir dir="${basedir}/app/build/logs"/>
<mkdir dir="${basedir}/app/build/pdepend"/>
<mkdir dir="${basedir}/app/build/phpdoc"/>
<mkdir dir="${basedir}/app/build/behat/"/>
<touch file="${basedir}/app/build/behat/result.txt"/>
</target>
<target name="lint" description="Perform syntax check of sourcecode files">
<apply executable="${php.cmd}" failonerror="true">
<arg value="-l"/>
<fileset dir="${basedir}/src">
<include name="**/*.php"/>
<modified/>
</fileset>
<fileset dir="${basedir}/src/">
<include name="**/*Test.php"/>
<modified/>
</fileset>
</apply>
</target>
<target name="phploc" description="Measure project size using PHPLOC">
<exec executable="phploc">
<arg value="--log-csv"/>
<arg value="${basedir}/app/build/logs/phploc.csv"/>
<arg path="${basedir}/src"/>
</exec>
</target>
<target name="pdepend" description="Calculate software metrics using PHP_Depend">
<exec executable="pdepend">
<arg value="--jdepend-xml=${basedir}/app/build/logs/jdepend.xml"/>
<arg value="--jdepend-chart=${basedir}/app/build/pdepend/dependencies.svg"/>
<arg value="--overview-pyramid=${basedir}/app/build/pdepend/overview-pyramid.svg"/>
<arg path="${basedir}/src"/>
</exec>
</target>
<target name="phpmd"
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="phpmd">
<arg path="${basedir}/src"/>
<arg value="text"/>
<arg value="${basedir}/app/phpmd.xml"/>
</exec>
</target>
<target name="phpmd-ci"
description="Perform project mess detection using PHPMD creating a log file for the continuous integration server">
<exec executable="phpmd">
<arg path="${basedir}/src"/>
<arg value="xml"/>
<arg value="${basedir}/app/phpmd.xml"/>
<arg value="--reportfile"/>
<arg value="${basedir}/app/build/logs/pmd.xml"/>
</exec>
</target>
<target name="phpcs"
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">
<arg value="--report=checkstyle"/>
<arg value="--report-file=${basedir}/app/build/logs/checkstyle.xml"/>
<arg value="--standard=Symfony2"/>
<arg path="${basedir}/src"/>
</exec>
</target>
<target name="phpcs-ci"
description="Find coding standard violations using PHP_CodeSniffer creating a log file for the continuous integration server">
<exec executable="phpcs" output="/dev/null">
<arg value="--report=checkstyle"/>
<arg value="--report-file=${basedir}/app/build/logs/checkstyle.xml"/>
<arg value="--standard=Symfony2"/>
<arg path="${basedir}/src"/>
</exec>
</target>
<target name="phpcpd" description="Find duplicate code using PHPCPD">
<exec executable="phpcpd">
<arg value="--log-pmd"/>
<arg value="${basedir}/app/build/logs/pmd-cpd.xml"/>
<arg path="${basedir}/src"/>
</exec>
</target>
<target name="phpdoc" description="Generate API documentation using phpdoc">
<exec executable="phpdoc">
<arg line="-d '${basedir}/src' -t '${basedir}/app/build/api' --title='Tempo' "/>
</exec>
</target>
<target name="phpunit" description="Run unit tests with PHPUnit">
<exec executable="phpunit" failonerror="true">
<arg value="-c"/>
<arg path="${basedir}/app/phpunit.xml"/>
</exec>
</target>
<target name="phpcb" description="Aggregate tool output with PHP_CodeBrowser">
<exec executable="phpcb">
<arg value="--log"/>
<arg path="${basedir}/app/build/logs"/>
<arg value="--source"/>
<arg path="${basedir}/src"/>
<arg value="--output"/>
<arg path="${basedir}/app/build/code-browser"/>
</exec>
</target>
<target name="composer" unless="composer.exists">
<get src="http://getcomposer.org/composer.phar" dest="${composer.path}"/>
<chmod file="${composer.path}" perm="775"/>
</target>
<target name="vendors" depends="composer" description="Update vendors" unless="true">
<exec executable="${php.cmd}" failonerror="true">
<arg value="${basedir}/composer.phar"/>
<arg value="install"/>
<arg value="--prefer-dist"/>
<arg value="-vvv"/>
<arg value="--profile"/>
</exec>
</target>
<target name="parameters" description="Copy parameters">
<exec executable="cp" failonerror="true">
<arg path="app/config/parameters.yml.dist"/>
<arg path="app/config/parameters.yml"/>
</exec>
</target>
<target name="cache" description="Cleanup cache">
<exec executable="${php.cmd}">
<arg value="${basedir}/bin/console"/>
<arg value="cache:clear"/>
<arg value="--env=test"/>
</exec>
</target>
<target name="database" depends="vendors" description="Database update">
<chmod file="${basedir}/bin/init-db" perm="740"/>
<exec executable="${basedir}/bin/init-db" failonerror="true">
<arg value="--env=test"/>
</exec>
<chmod file="${basedir}/bin/init-mongodb" perm="740"/>
<exec executable="${basedir}/bin/init-mongodb" failonerror="true">
<arg value="--env=test"/>
</exec>
</target>
<target name="assetic" description="Dumping assets">
<exec executable="${php.cmd}">
<arg value="${basedir}/bin/console"/>
<arg value="assetic:dump"/>
<arg value="--env=test"/>
</exec>
</target>
<target name="assets" description="Installing assets">
<exec executable="${php.cmd}">
<arg value="${basedir}/bin/console"/>
<arg value="assets:install"/>
<arg value="--symlink"/>
<arg value="${basedir}/web"/>
</exec>
</target>
<target name="selenium" unless="selenium.exists">
<get src="http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar"
dest="${selenium.path}"/>
</target>
<target name="chrome" depends="selenium" unless="chrome.exists">
<get src="http://chromedriver.storage.googleapis.com/2.14/chromedriver_linux64.zip"
dest="${chrome.path}"/>
</target>
<target name="selenium-start" depends="chrome">
<chmod file="${basedir}/bin/start-selenium" perm="744"/>
<chmod file="${chrome.path}" perm="777"/>
<exec executable="${basedir}/bin/start-selenium">
</exec>
</target>
<target name="behat" depends="selenium-start" description="Validates features">
<chmod file="${basedir}/bin/behat" perm="740"/>
<exec executable="${basedir}/bin/behat" failonerror="true">
<arg value="--format=pretty"/>
<arg value="--out=${basedir}/app/build/behat/result.txt"/>
<arg value="--profile=test"/>
</exec>
</target>
</project>