forked from sebastianfeldmann/phpbu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
225 lines (190 loc) · 7.24 KB
/
build.xml
File metadata and controls
225 lines (190 loc) · 7.24 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="phpbu" default="build">
<property name="php" value="php"/>
<target name="build"
depends="prepare,lint,phploc,phpcs-ci,phpunit"/>
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/build/logs"/>
<delete dir="${basedir}/build/phar"/>
<delete>
<fileset dir="${basedir}/build">
<include name="**/*.phar" />
</fileset>
</delete>
</target>
<target name="prepare" description="Prepare for build">
<mkdir dir="${basedir}/build/logs"/>
</target>
<target name="lint">
<apply executable="${php}" failonerror="true">
<arg value="-l" />
<fileset dir="${basedir}/src">
<include name="**/*.php" />
<modified />
</fileset>
<fileset dir="${basedir}/tests">
<include name="**/*.php" />
<modified />
</fileset>
</apply>
</target>
<target name="phploc" description="Measure project size using PHPLOC">
<exec executable="phploc">
<arg value="--log-csv" />
<arg value="${basedir}/build/logs/phploc.csv" />
<arg value="--log-xml" />
<arg value="${basedir}/build/logs/phploc.xml" />
<arg path="${basedir}/src" />
</exec>
</target>
<target name="phpcs" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="phpcs">
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
</target>
<target name="phpcs-ci" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="phpcs" output="/dev/null">
<arg value="--report=checkstyle" />
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml" />
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg path="${basedir}/src" />
<arg path="${basedir}/tests" />
</exec>
</target>
<target name="phpunit" description="Run unit tests with PHPUnit">
<exec executable="phpunit" failonerror="true">
</exec>
</target>
<target name="phar"
description="Create PHAR archive of phpbu and all its dependencies (release)"
depends="phar-prepare">
<exec executable="bash" outputproperty="version">
<arg value="-c" />
<arg value="${basedir}/phpbu --version | awk '{print $2}'" />
</exec>
<antcall target="phar-build">
<param name="version" value="${version}"/>
</antcall>
</target>
<target name="phar-alpha"
description="Create PHAR archive of PHPUnit and all its dependencies (alpha)"
depends="phar-prepare">
<antcall target="phar-build">
<param name="version" value="alpha"/>
</antcall>
</target>
<target name="phar-beta"
description="Create PHAR archive of PHPUnit and all its dependencies (beta)"
depends="phar-prepare">
<antcall target="phar-build">
<param name="version" value="beta"/>
</antcall>
</target>
<target name="phar-prepare" depends="clean">
<mkdir dir="${basedir}/build/phar"/>
<exec executable="${basedir}/build/phar-manifest.php" output="${basedir}/build/phar/manifest.txt"/>
<copy file="${basedir}/vendor/barracuda/copy/LICENSE" tofile="${basedir}/build/phar/copy/LICENSE"/>
<copy todir="${basedir}/build/phar/copy">
<fileset dir="${basedir}/vendor/barracuda/copy/src">
<include name="**/*.php" />
<include name="**/*.crt" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/eher">
<fileset dir="${basedir}/vendor/eher/oauth/src">
<include name="**/*.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/aws/aws-sdk-php/LICENSE.md" tofile="${basedir}/build/phar/aws-sdk/LICENSE"/>
<copy todir="${basedir}/build/phar/aws-sdk">
<fileset dir="${basedir}/vendor/aws/aws-sdk-php/src/Aws">
<include name="**/*.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/dropbox/dropbox-sdk/License.txt" tofile="${basedir}/build/phar/dropbox/LICENSE"/>
<copy todir="${basedir}/build/phar/dropbox">
<fileset dir="${basedir}/vendor/dropbox/dropbox-sdk/lib/Dropbox">
<include name="**/*.php" />
<include name="**/*.crt" />
<exclude name="**/autoload.php" />
<exclude name="**/strict.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/guzzle/guzzle/LICENSE" tofile="${basedir}/build/phar/guzzle/LICENSE"/>
<copy todir="${basedir}/build/phar/guzzle">
<fileset dir="${basedir}/vendor/guzzle/guzzle/src">
<include name="**/*.php" />
<include name="**/*.pem" />
</fileset>
</copy>
<copy file="${basedir}/vendor/phpseclib/phpseclib/LICENSE" tofile="${basedir}/build/phar/phpseclib/LICENSE"/>
<copy todir="${basedir}/build/phar/phpseclib">
<fileset dir="${basedir}/vendor/phpseclib/phpseclib/phpseclib">
<include name="**/*.php" />
<include name="**/*.cnf" />
<exclude name="**/autoload.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/phpunit/php-timer/LICENSE" tofile="${basedir}/build/phar/php-timer/LICENSE"/>
<copy todir="${basedir}/build/phar/php-timer">
<fileset dir="${basedir}/vendor/phpunit/php-timer/PHP">
<include name="**/*.php" />
<exclude name="**/Autoload.*" />
</fileset>
</copy>
<copy file="${basedir}/vendor/sebastian/environment/LICENSE" tofile="${basedir}/build/phar/sebastian-environment/LICENSE"/>
<copy todir="${basedir}/build/phar/sebastian-environment">
<fileset dir="${basedir}/vendor/sebastian/environment/src">
<include name="**/*.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/sebastian/version/LICENSE" tofile="${basedir}/build/phar/sebastian-version/LICENSE"/>
<copy todir="${basedir}/build/phar/sebastian-version">
<fileset dir="${basedir}/vendor/sebastian/version/src">
<include name="**/*.php" />
<exclude name="**/autoload.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/swiftmailer/swiftmailer/LICENSE" tofile="${basedir}/build/phar/swiftmailer/LICENSE"/>
<copy todir="${basedir}/build/phar/swiftmailer">
<fileset dir="${basedir}/vendor/swiftmailer/swiftmailer/lib">
<include name="**/*.php" />
<exclude name="**/swift_required_pear.php" />
</fileset>
</copy>
<copy file="${basedir}/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/LICENSE" tofile="${basedir}/build/phar/symfony/event-dispatcher/LICENSE"/>
<copy todir="${basedir}/build/phar/symfony/event-dispatcher">
<fileset dir="${basedir}/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher">
<include name="**/*.php" />
<exclude name="**/Test*" />
</fileset>
</copy>
<exec executable="${basedir}/build/phar-patch.php"/>
</target>
<target name="phar-build">
<copy todir="${basedir}/build/phar">
<fileset dir="${basedir}/src">
<include name="**/*.php" />
</fileset>
</copy>
<exec executable="${basedir}/build/phar-version.php" outputproperty="phar_version">
<arg value="${version}" />
</exec>
<exec executable="phpab">
<arg value="--all" />
<arg value="--phar" />
<arg value="--output" />
<arg path="${basedir}/build/phpbu-${phar_version}.phar" />
<arg value="--template" />
<arg path="${basedir}/build/phar-autoload.php.in" />
<arg value="--indent" />
<arg value=" " />
<arg path="${basedir}/build/phar" />
</exec>
<chmod file="${basedir}/build/phpbu-${phar_version}.phar" perm="ugo+rx"/>
</target>
</project>