forked from sebastianbergmann/phpcpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
166 lines (140 loc) · 4.86 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="phpcpd" default="build">
<target name="build" depends="prepare,lint,phpcs,phpunit"/>
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/vendor"/>
<delete file="${basedir}/composer.lock"/>
<delete file="${basedir}/composer.phar"/>
<delete dir="${basedir}/build/phar"/>
<delete dir="${basedir}/build/SebastianBergmann"/>
<delete file="${basedir}/build/LICENSE"/>
<delete file="${basedir}/build/README.md"/>
<delete file="${basedir}/build/phpcpd.bat"/>
<delete file="${basedir}/build/phpcpd.php"/>
<delete>
<fileset dir="${basedir}/build" includes="*.phar"/>
<fileset dir="${basedir}/build" includes="*.tgz"/>
</delete>
</target>
<target name="prepare" depends="clean,phpab" description="Prepare for build">
</target>
<target name="phpab" description="Generate autoloader scripts">
<exec executable="phpab">
<arg value="--output" />
<arg path="src/autoload.php" />
<arg value="--template" />
<arg path="src/autoload.php.in" />
<arg value="--indent" />
<arg value=" " />
<arg path="src" />
</exec>
</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="phpcs" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="phpcs">
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg path="${basedir}/src" />
</exec>
</target>
<target name="phpunit" description="Run unit tests with PHPUnit">
<exec executable="phpunit" failonerror="true">
<arg value="--configuration" />
<arg path="${basedir}/build/phpunit.xml" />
</exec>
</target>
<target name="pear">
<mkdir dir="${basedir}/build/SebastianBergmann/PHPCPD"/>
<copy todir="${basedir}/build/SebastianBergmann/PHPCPD">
<fileset dir="${basedir}/src"/>
</copy>
<copy file="LICENSE" todir="${basedir}/build"/>
<copy file="README.md" todir="${basedir}/build"/>
<copy file="phpcpd.bat" todir="${basedir}/build"/>
<copy file="phpcpd.php" todir="${basedir}/build"/>
<exec executable="pear" dir="${basedir}/build">
<arg value="package" />
</exec>
<delete dir="${basedir}/build/SebastianBergmann"/>
<delete file="${basedir}/build/LICENSE"/>
<delete file="${basedir}/build/README.md"/>
<delete file="${basedir}/build/phpcpd.bat"/>
<delete file="${basedir}/build/phpcpd.php"/>
</target>
<target name="phar"
description="Create PHAR archive of PHPCPD and all its dependencies"
depends="clean">
<mkdir dir="${basedir}/build/phar"/>
<exec executable="bash" outputproperty="version">
<arg value="-c" />
<arg value="${basedir}/phpcpd.php --version | awk 'BEGIN { ORS = ""; } {print $2}'" />
</exec>
<get src="https://getcomposer.org/composer.phar" dest="${basedir}/composer.phar"/>
<exec executable="php">
<arg value="composer.phar"/>
<arg value="install"/>
</exec>
<copy todir="${basedir}/build/phar/src">
<fileset dir="${basedir}/src">
<include name="**/*.php" />
<exclude name="**/autoload.php" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/finder-facade">
<fileset dir="${basedir}/vendor/sebastian/finder-facade/src">
<include name="**/*.php" />
<exclude name="**/autoload.php" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/version">
<fileset dir="${basedir}/vendor/sebastian/version/src">
<include name="**/*.php" />
<exclude name="**/autoload.php" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/php-timer">
<fileset dir="${basedir}/vendor/phpunit/php-timer/PHP">
<include name="**/*.php" />
<exclude name="**/Autoload.php" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/symfony">
<fileset dir="${basedir}/vendor/symfony">
<include name="**/*.php" />
<exclude name="**/Tests/**" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/fdomdocument">
<fileset dir="${basedir}/vendor/theseer/fdomdocument/src"/>
</copy>
<exec executable="phpab">
<arg value="--all" />
<arg value="--phar" />
<arg value="--output" />
<arg path="${basedir}/build/phpcpd-${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/phpcpd-${version}.phar" perm="ugo+rx"/>
<delete dir="${basedir}/build/phar"/>
<delete dir="${basedir}/vendor"/>
<delete file="${basedir}/composer.lock"/>
<delete file="${basedir}/composer.phar"/>
</target>
</project>