-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
27 lines (23 loc) · 1.03 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
<project name="laradic-support" default="start">
<property file="build.properties"/>
<property name="tools.dir" value=""/>
<property name="tools.ext" value=""/>
<property name="vendor.dir" value="${project.basedir}/vendor"/>
<!-- Check if jenkins or local, then take appropriate actions -->
<if>
<equals arg1="${env}" arg2="local"/>
<then>
<property name="vendor.dir" override="true" value="${project.basedir}/../../../vendor"/>
<echo message="We're not on jenkins. Vendor dir: ${vendor.dir}"/>
<import file="local.build.xml" description="Local tasks for in workbench"/>
</then>
<else>
<property name="vendor.dir" override="true" value="${project.basedir}/vendor"/>
<echo message="We're on jenkins. Vendor dir: ${vendor.dir}"/>
<import file="vendor/laradic/phing/jenkins.xml" description="Jenkins tasks"/>
</else>
</if>
<target name="start">
<phingcall target="build"/>
</target>
</project>