forked from cgutteridge/Graphite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
90 lines (75 loc) · 2.69 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
<?xml version="1.0"?>
<project name="Graphite" default="build" basedir=".">
<condition property="phpunit.bin" value="phpunit.bat" else="phpunit">
<os family="windows"/>
</condition>
<condition property="pear.bin" value="pear.bat" else="pear">
<os family="windows"/>
</condition>
<condition property="phpcs.bin" value="phpcs.bat" else="phpcs">
<os family="windows"/>
</condition>
<condition property="phpdoc.bin" value="phpdoc.bat" else="phpdoc">
<os family="windows"/>
</condition>
<target name="clean" description="Clean up and create artifact directories">
<delete dir="${basedir}/lib" />
<delete dir="${basedir}/build/api"/>
<delete dir="${basedir}/build/code-browser"/>
<delete dir="${basedir}/build/coverage"/>
<delete dir="${basedir}/build/logs"/>
<delete dir="${basedir}/build/phpdox"/>
<delete dir="${basedir}/build"/>
<mkdir dir="${basedir}/lib/" />
<mkdir dir="${basedir}/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/phpdox"/>
<exec executable="git">
<arg line="clone https://github.com/semsol/arc2.git lib/ARC2" />
</exec>
</target>
<target name="phpcs-ci" description="Find coding standard violations using PHP_CodeSniffer">
<exec executable="${phpcs.bin}" output="/dev/null">
<arg value="--report=checkstyle" />
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml" />
<arg path="${basedir}/Graphite.php" />
<arg path="${basedir}/Graphite/" />
</exec>
</target>
<target name="phpunit">
<exec dir="${basedir}" executable="${phpunit.bin}" failonerror="true">
<arg line="tests/"/>
</exec>
</target>
<target name="package">
<exec dir="${basedir}/build" executable="${pear.bin}" failonerror="true">
<arg line="package ../package.xml"/>
</exec>
</target>
<target name="lint">
<apply executable="php" failonerror="true">
<arg value="-l" />
<fileset dir="${basedir}">
<include name="**/*.php" />
<modified />
</fileset>
<fileset dir="${basedir}/tests">
<include name="**/*.php" />
<modified />
</fileset>
</apply>
</target>
<target name="phpdoc" description="Generate API documentation using phpdoc">
<exec executable="${phpdoc.bin}">
<arg line="project:run -c phpdoc.dist.xml" />
</exec>
</target>
<target name="phpdox"
description="Generate API documentation using phpDox">
<exec executable="phpdox"/>
</target>
<target name="build" depends="clean,lint,phpdoc,phpunit,phpcs-ci,package"/>
</project>