-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.xml
63 lines (56 loc) · 2.22 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="PHP Audit" default="build" basedir=".">
<taskdef name="ReadSemanticVersion" classname="\SetBased\Phing\Task\ReadSemanticVersionTask"/>
<property name="VERSION" value="0.0.0"/>
<target name="build"/>
<!-- Run composer update and executes various other updates -->
<target name="update">
<exec executable="composer" checkreturn="true" passthru="true">
<arg value="--ansi"/>
<arg value="update"/>
</exec>
<phing phingfile="build.xml" target="outdated" haltonfailure="true"/>
</target>
<!-- Show outdated packages -->
<target name="outdated">
<exec executable="composer" checkreturn="false" passthru="true">
<arg value="--ansi"/>
<arg value="outdated"/>
<arg value="--direct"/>
</exec>
</target>
<!-- Generates the documentation -->
<target name="docs">
<exec command="make html" dir="docs" passthru="true" checkreturn="true"/>
</target>
<!-- Creates a new version/release. -->
<target name="version">
<readSemanticVersion file=".version"
versionProperty="VERSION"
haltOnError="true"/>
<!-- Set version of application -->
<reflexive>
<fileset dir=".">
<include name="src/Application/AuditApplication.php"/>
</fileset>
<filterchain>
<replaceregexp>
<regexp pattern="parent::__construct\('audit', .*"
replace="parent::__construct('audit', '${VERSION}');"/>
</replaceregexp>
</filterchain>
</reflexive>
<gitcommit repository="." message="Release: ${VERSION}" allFiles="true"/>
<gitpush repository="."/>
<gittag repository="." name="${VERSION}"/>
<gitpush repository="." refspec="${VERSION}" quiet="false"/>
</target>
<!-- Runs all unit tests -->
<target name="unit">
<exec executable="bash" passthru="true" checkreturn="true">
<arg value="-e"/>
<arg value="-x"/>
<arg value="test/unit-test.sh"/>
</exec>
</target>
</project>