-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
27 lines (23 loc) · 1.2 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- ================================================== -->
<!-- Build Definition for OpenDocument -->
<!-- -->
<!-- http://git.tine20.org/git?p=opendocument;a=summary -->
<!-- http://www.phing.info -->
<!-- ================================================== -->
<project name="opendocument" description="OpenDocument build file" default="test">
<!-- ============================================ -->
<!-- Target: test -->
<!-- ============================================ -->
<target name="test" depends="compose">
<echo msg="Starting Tests" />
<exec command="phpunit --config phpunit.xml --log-junit junit_log_opendocument.xml" dir="tests" passthru="true" />
</target>
<!-- ============================================ -->
<!-- Target: compose -->
<!-- ============================================ -->
<target name="compose">
<echo msg="Fetching dependencies" />
<exec command="composer update" passthru="true" />
</target>
</project>