forked from tideways/php-xhprof-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
24 lines (21 loc) · 748 Bytes
/
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
<?xml version="1.0" ?>
<project name="Tideways PHP Extension">
<target name="compile">
<exec executable="phpize" failonerror="true" />
<exec executable="./configure" failonerror="true" />
<exec executable="make" failonerror="true" />
</target>
<target name="test" depends="compile">
<exec executable="make" failonerror="true">
<arg value="test" />
<env key="NO_INTERACTION" value="1" />
<env key="REPORT_EXIT_STATUS" value="1" />
</exec>
</target>
<target name="install" depends="test">
<exec executable="sudo" failonerror="true">
<arg value="make" />
<arg value="install" />
</exec>
</target>
</project>