forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-test-db-upgrade.xml
30 lines (24 loc) · 1.04 KB
/
build-test-db-upgrade.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
<?xml version="1.0"?>
<project name="portal-test-db-upgrade" basedir="." default="test" xmlns:antelope="antlib:ise.antelope.tasks">
<import file="build-test.xml" />
<target name="run-latest-upgrade-test">
<echo file="app.server.${user.name}.properties">app.server.type=tomcat</echo>
<ant antfile="build-test-tomcat.xml" target="run-selenium-tomcat" inheritAll="false">
<property name="skip.rebuild-database" value="true" />
</ant>
</target>
<target name="run-smoke-test">
<ant antfile="build-test-tomcat.xml" target="run-selenium-tomcat" inheritAll="false">
<property name="skip.rebuild-database" value="true" />
<property name="test.name" value="DBUpgradeSmokeTestSuite" />
</ant>
</target>
<target name="run-versioned-upgrade-test">
<ant antfile="build-test-tomcat.xml" target="run-selenium-versioned-tomcat" inheritAll="false">
<property name="skip.rebuild-database" value="true" />
</ant>
<antcall target="clean-up-bundles">
<param name="skip.delete-liferay-home" value="true" />
</antcall>
</target>
</project>