source: other-projects/trunk/realistic-books/packages/AntInstaller/examples/buildtypes/runall.cmd@ 19253

Last change on this file since 19253 was 19253, checked in by davidb, 15 years ago

Establishing a source code repository for Veronica's Realistic Book's software

File size: 3.0 KB
Line 
1@echo off
2
3REM # This script checks all the congurations
4
5set DIR=%~dp0
6cd %DIR%
7
8echo using JAVA_HOME:%JAVA_HOME%
9
10cd ifProperty\installer
11echo ':::::::' checking ifProperty
12call .\install.cmd %1
13if not errorlevel = 0 echo "ifProperty failed"
14
15
16cd ..\..\manytargets\artifacts
17echo ':::::::' checking manytargets
18%JAVA_HOME%\bin\java -jar *.jar %1
19if not errorlevel = 0 echo "manytargets failed"
20
21
22cd ..\..\nonextract\artifacts
23echo ':::::::' checking nonextract
24%JAVA_HOME%\bin\java -jar *.jar %1
25if not errorlevel = 0 echo "nonextract failed"
26
27
28cd ..\..\nonextract-auto\artifacts
29echo ':::::::' checking nonextract-auto
30%JAVA_HOME%\bin\java -jar *.jar %1
31if not errorlevel = 0 echo "nonextract-auto failed"
32
33
34cd ..\..\nonextract-jdk1.5\artifacts
35echo ':::::::' checking nonextract-jdk1.5
36%JAVA_HOME%\bin\java -jar *.jar %1
37if not errorlevel = 0 echo "nonextract-jdk1.5 failed"
38
39
40cd ..\..\nonextract-type\artifacts
41echo ':::::::' checking nonextract-type
42%JAVA_HOME%\bin\java -jar *.jar %1
43if not errorlevel = 0 echo "nonextract-type failed"
44
45
46cd ..\..\releasenotes\artifacts
47echo ':::::::' checking releasenotes
48%JAVA_HOME%\bin\java -jar *.jar %1
49if not errorlevel = 0 echo "releasenotes failed"
50
51
52cd ..\..\script\installer
53echo ':::::::' checking script
54call .\install.cmd %1
55if not errorlevel = 0 echo "script failed"
56
57
58cd ..\..\script-auto\installer
59echo ':::::::' checking script-auto
60call .\install.cmd %1
61if not errorlevel = 0 echo "script-auto failed"
62
63
64cd ..\..\script-graphical-pp\installer
65echo ':::::::' checking script-graphical-pp
66call .\install.cmd %1
67if not errorlevel = 0 echo "script-graphical-pp failed"
68
69
70cd ..\..\script-laf\installer
71echo ':::::::' checking script-laf
72call .\install.cmd %1
73if not errorlevel = 0 echo "script-laf failed"
74
75
76cd ..\..\script-lang\installer
77echo ':::::::' checking script-lang
78call .\install.cmd %1
79if not errorlevel = 0 echo "script-lang failed"
80
81
82cd ..\..\script-no-xerces\installer
83echo ':::::::' checking script-no-xerces
84call .\install.cmd %1
85if not errorlevel = 0 echo "script-no-xerces failed"
86
87
88cd ..\..\script-overflow\installer
89echo ':::::::' checking script-overflow
90call .\install.cmd %1
91if not errorlevel = 0 echo "script-overflow failed"
92
93
94cd ..\..\script-regex\installer
95echo ':::::::' checking script-regex
96call .\install.cmd %1
97if not errorlevel = 0 echo "script-regex failed"
98
99
100cd ..\..\script-type\installer
101echo ':::::::' checking script-type
102call .\install-type.cmd %1
103if not errorlevel = 0 echo "script-type failed"
104call .\install-type.cmd %1 -type alternative
105if not errorlevel = 0 echo "script-type failed"
106
107
108cd ..\..\script-wide\installer
109echo ':::::::' checking script-wide
110call .\install.cmd %1
111if not errorlevel = 0 echo "script-wide failed"
112
113
114cd ..\..\selfextract\artifacts
115echo ':::::::' checking selfextract
116%JAVA_HOME%\bin\java -jar *.jar %1
117if not errorlevel = 0 echo "selfextract failed"
118
119
120cd ..\..
121
Note: See TracBrowser for help on using the repository browser.