-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (21 loc) · 772 Bytes
/
build.xml
File metadata and controls
25 lines (21 loc) · 772 Bytes
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
<project name="onebip-array" default="spec">
<property name="project.name" value="${phing.project.name}" />
<property name="spec.basedir" value="${project.basedir}/spec" />
<property name="vendor.basedir" value="${project.basedir}/vendor" />
<target name="spec" depends="prepare">
<exec command="${vendor.basedir}/bin/phpunit --configuration ${project.basedir}/phpunit.xml"
passthru="true"
checkreturn="true"
/>
</target>
<target name="dds" depends="prepare,spec" />
<target name="prepare" depends="composer-install" />
<target name="composer-install">
<exec
command="composer install"
dir="${project.basedir}"
passthru="true"
checkreturn="true"
/>
</target>
</project>