forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-apacheds.xml
109 lines (96 loc) · 2.83 KB
/
build-test-apacheds.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0"?>
<project basedir="." name="portal-test-apacheds" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<macrodef name="unzip-apacheds">
<sequential>
<delete dir="${apacheds.dir}" />
<if>
<not>
<available file="${app.server.parent.dir}/${apacheds.zip.name}" />
</not>
<then>
<mirrors-get
dest="${app.server.parent.dir}/${apacheds.zip.name}"
src="${apacheds.zip.url}"
verbose="true"
/>
</then>
</if>
<unzip
dest="${app.server.parent.dir}"
src="${app.server.parent.dir}/${apacheds.zip.name}"
/>
</sequential>
</macrodef>
<macrodef name="unzip-apacheds-instance-custom">
<attribute default="" name="apacheds.instance.custom.zip.name" />
<attribute default="" name="apacheds.instance.custom.zip.source" />
<sequential>
<if>
<not>
<available file="${apacheds.dir}/instances/@{apacheds.instance.custom.zip.name}" />
</not>
<then>
<mirrors-get
dest="${apacheds.dir}/instances/@{apacheds.instance.custom.zip.name}"
src="@{apacheds.instance.custom.zip.source}"
verbose="true"
/>
</then>
</if>
<unzip
dest="${apacheds.dir}/instances"
src="${apacheds.dir}/instances/@{apacheds.instance.custom.zip.name}"
/>
</sequential>
</macrodef>
<target name="start-apacheds">
<unzip-apacheds />
<get-testcase-property property.name="apacheds.blank.user.password.enabled" />
<if>
<equals arg1="${apacheds.blank.user.password.enabled}" arg2="true" />
<then>
<unzip-apacheds-instance-custom
apacheds.instance.custom.zip.name="${apacheds.instance.blank.user.password.custom.zip.name}"
apacheds.instance.custom.zip.source="http://files.liferay.com/private/apps/apache/apacheds/${apacheds.instance.blank.user.password.custom.zip.name}"
/>
</then>
<else>
<unzip-apacheds-instance-custom
apacheds.instance.custom.zip.name="${apacheds.instance.custom.zip.name}"
apacheds.instance.custom.zip.source="http://files.liferay.com/private/apps/apache/apacheds/${apacheds.instance.custom.zip.name}"
/>
</else>
</if>
<if>
<os family="unix" />
<then>
<chmod file="${apacheds.dir}/bin/**" perm="a+x" />
<exec dir="${apacheds.dir}/bin" executable="/bin/bash">
<arg value="-c" />
<arg value="./apacheds.sh liferay start" />
</exec>
</then>
<elseif>
<os family="windows" />
<then>
<exec dir="${apacheds.dir}/bin" executable="cmd" spawn="true">
<arg value="/c" />
<arg value="apacheds.bat liferay" />
</exec>
</then>
</elseif>
</if>
</target>
<target name="stop-apacheds">
<if>
<os family="unix" />
<then>
<exec dir="${apacheds.dir}/bin" executable="/bin/bash">
<arg value="-c" />
<arg value="./apacheds.sh liferay stop" />
</exec>
</then>
</if>
</target>
</project>