-
Notifications
You must be signed in to change notification settings - Fork 39
/
build.xml
212 lines (186 loc) · 9.25 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="phpwebsite" default="build">
<property environment="env" />
<!-- The current set of directories containing PHP code is /class,
/core/class, /mod/*/class. Here, we set this up for consumption
by the various utilities that the buildscript employs. -->
<dirset dir="${basedir}" includes="class,core/class,mod/**/class,Global/**" id="phpclasses" />
<pathconvert pathsep=" " property="phpclass-directories" refid="phpclasses" />
<pathconvert pathsep="," property="phpclass-directories-comma" refid="phpclasses" />
<pathconvert pathsep=" " property="phpclass-directories-source" refid="phpclasses">
<mapper type="glob" from="*" to="--source *" />
</pathconvert>
<!-- These properties are used to communicate version information from
Jenkins to things like tar and rpm. -->
<target name="do-properties">
<property name="project.name" value="${env.JOB_NAME}"/>
<condition property="project.version" value="${env.PRODUCTION_VERSION}" else="TESTING">
<isset property="env.PRODUCTION_VERSION" />
</condition>
<condition property="project.repo" value="production" else="testing">
<isset property="env.PRODUCTION_VERSION" />
</condition>
<condition property="project.release" value="${env.PRODUCTION_RELEASE}" else="${env.BUILD_NUMBER}">
<isset property="env.PRODUCTION_RELEASE" />
</condition>
</target>
<!-- 'build' just makes sure there are no silly syntax errors. If you fail
this step, you fail at life. -->
<target name="build" depends="lint" />
<!-- 'metrics' runs all the testing, metrics, docgen, etc. -->
<target name="metrics" depends="prepare,phploc,pdepend,phpmd,phpcs,phpcpd,apigen,phpunit,phpcb" />
<target name="metrics-ci" depends="phploc,pdepend,phpmd-ci,phpcs-ci,phpcpd,apigen-ci,phpunit,phpcb" />
<target name="clean" description="Cleanup build artifacts">
<delete dir="${basedir}/build" />
<delete file="cache.properties" />
</target>
<target name="prepare" depends="clean"
description="Prepare for build">
<mkdir dir="${basedir}/build/api"/>
<mkdir dir="${basedir}/build/code-browser"/>
<mkdir dir="${basedir}/build/coverage"/>
<mkdir dir="${basedir}/build/logs"/>
<mkdir dir="${basedir}/build/pdepend"/>
<mkdir dir="${basedir}/build/rpm"/>
<mkdir dir="${basedir}/build/bin"/>
</target>
<target name="lint" depends="prepare">
<apply executable="php" failonerror="true">
<arg value="-l" />
<fileset dir="${basedir}">
<include name="**/*.php" />
<exclude name="lib/**" />
<modified />
</fileset>
</apply>
</target>
<target name="phploc" depends="prepare" description="Measure project size using PHPLOC">
<exec executable="phploc">
<arg value="--log-csv" />
<arg value="${basedir}/build/logs/phploc.csv" />
<arg line="${phpclass-directories}" />
</exec>
</target>
<target name="pdepend" depends="prepare"
description="Calculate software metrics using PHP_Depend">
<exec executable="pdepend">
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml" />
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg" />
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg" />
<arg line="${phpclass-directories-comma}" />
</exec>
</target>
<target name="phpmd" depends="prepare"
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<!-- Commenting out because it literally takes days to run.
<exec executable="phpmd">
<arg line="${phpclass-directories-comma}" />
<arg value="text" />
<arg value="rulesets/unusedcode.xml,rulesets/codesize.xml,rulesets/controversial.xml,rulesets/design.xml,rulesets/naming.xml" />
</exec>-->
</target>
<target name="phpmd-ci" depends="prepare"
description="Perform project mess detection using PHPMD creating a log file for the continuous integration server">
<!-- Commenting out because it literally takes days to run.
<exec executable="phpmd">
<arg line="${phpclass-directories-comma}" />
<arg value="xml" />
<arg value="rulesets/unusedcode.xml,rulesets/codesize.xml,rulesets/controversial.xml,rulesets/design.xml,rulesets/naming.xml" />
<arg value="-\-reportfile" />
<arg value="${basedir}/build/logs/pmd.xml" />
</exec>-->
</target>
<target name="phpcs" depends="prepare"
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="--standard=PEAR" />
<arg line="${phpclass-directories}" />
</exec>
</target>
<target name="phpcs-ci" depends="prepare"
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}/build/logs/checkstyle.xml" />
<arg value="--standard=PEAR" />
<arg line="${phpclass-directories}" />
</exec>
</target>
<target name="phpcpd" depends="prepare" description="Find duplicate code using PHPCPD">
<exec executable="phpcpd">
<arg value="--log-pmd" />
<arg value="${basedir}/build/logs/pmd-cpd.xml" />
<arg line="${phpclass-directories}" />
</exec>
</target>
<target name="apigen" depends="prepare"
description="Generate API documentation using ApiGen">
<exec executable="apigen">
<arg line="${phpclass-directories-source}" />
<arg value="--destination" /><arg value="${basedir}/build/api" />
</exec>
</target>
<target name="apigen-ci" depends="prepare"
description="Generate API documentation using ApiGen">
<exec executable="apigen">
<arg line="${phpclass-directories-source}" />
<arg value="--destination" /><arg value="${basedir}/build/api" />
<arg value="--download" /><arg value="yes" />
<arg value="--colors" /><arg value="no" />
<arg value="--progressbar" /><arg value="no" />
</exec>
</target>
<target name="phpunit" depends="prepare" description="Run unit tests with PHPUnit">
<exec executable="phpunit" failonerror="true">
<arg value="-c" /><arg value="${basedir}/phpunit-phpwebsite.xml" />
</exec>
</target>
<target name="phpcb" depends="prepare"
description="Aggregate tool output with PHP_CodeBrowser">
<exec executable="phpcb">
<arg value="--log" /><arg value="${basedir}/build/logs" />
<arg line="${phpclass-directories-source}" />
<arg value="--output" /><arg value="${basedir}/build/code-browser" />
</exec>
</target>
<target name="tarball" depends="build" description="Create a Tarball">
<tar destfile="${basedir}/build/bin/${project.name}-${project.version}-${project-release}.tar.bz2" compression="bzip2">
<tarfileset dir="${basedir}" prefix="${project.name}-${project.version}-${project.release}/">
<exclude name=".git/**" />
<exclude name=".gitignore" />
<exclude name="build/**" />
<exclude name="cache.properties" />
</tarfileset>
</tar>
</target>
<target name="rpm" depends="tarball" description="Create an RPM">
<exec executable="rpmbuild" failonerror="true">
<arg value="--define" />
<arg value="_topdir ${basedir}/build/rpm" />
<arg value="--define" />
<arg value="_rpmdir ${basedir}/build/bin" />
<arg value="--define" />
<arg value="_srcrpmdir %{_topdir}" />
<arg value="--define" />
<arg value="_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" />
<arg value="--define" />
<arg value="_specdir %{_topdir}" />
<arg value="--define" />
<arg value="_sourcedir ${basedir}/build/bin" />
<arg value="--define" />
<arg value="vendor Appalachian State University" />
<arg value="--define" />
<arg value="version ${project.version}" />
<arg value="--define" />
<arg value="release ${project.release}" />
<arg value="--define" />
<arg value="_binaries_in_noarch_packages_terminate_build 0" />
<arg value="-bb" />
<arg path="${basedir}/${project.name}.spec" />
</exec>
</target>
<target name="post-rpm" depends="metrics-ci">
<!-- This target is used by Jenkins to run metrics AFTER build. This
space intentionally left blank. -->
</target>
</project>