forked from scalatest/scalatest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
travis_build.sh
executable file
·290 lines (239 loc) · 9.23 KB
/
travis_build.sh
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#!/bin/bash
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
export MODE=$1
if [[ $MODE = 'Compile' ]] ; then
#this echo is required to keep travis alive, because some compilation parts are silent for more than 10 minutes
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile test:compile #gentests has .dependsOn(scalatest % "test->test"), so it is common
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'RegularTests1' ]] ; then
echo "Doing 'sbt genRegularTests1/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile
sbt ++$TRAVIS_SCALA_VERSION genRegularTests1/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION genRegularTests1/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'RegularTests2' ]] ; then
echo "Doing 'sbt genRegularTests2/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile
sbt ++$TRAVIS_SCALA_VERSION genRegularTests2/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION genRegularTests2/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'RegularTests3' ]] ; then
echo "Doing 'sbt genRegularTests3/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile
sbt ++$TRAVIS_SCALA_VERSION genRegularTests3/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION genRegularTests3/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'RegularTests4' ]] ; then
echo "Doing 'sbt genRegularTests4/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile
sbt ++$TRAVIS_SCALA_VERSION genRegularTests4/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION genRegularTests4/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'RegularTests5' ]] ; then
echo "Doing 'sbt genRegularTests5/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION compile
sbt ++$TRAVIS_SCALA_VERSION genRegularTests5/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION genRegularTests5/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'ScalacticTests' ]] ; then
echo "Doing 'sbt scalactic/test'"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION scalactic/test
rc=$?
echo first try, exitcode $rc
if [[ $rc != 0 ]] ; then
sbt ++$TRAVIS_SCALA_VERSION scalactic/testQuick
rc=$?
echo second try, exitcode $rc
fi
echo final, exitcode $rc
exit $rc
fi
if [[ $MODE = 'genMustMatchersTests1' ]] ; then
echo "Doing 'sbt genMustMatchersTests1/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genMustMatchersTests1/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genMustMatchersTests2' ]] ; then
echo "Doing 'sbt genMustMatchersTests2/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genMustMatchersTests2/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genMustMatchersTests3' ]] ; then
echo "Doing 'sbt genMustMatchersTests3/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genMustMatchersTests3/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genMustMatchersTests4' ]] ; then
echo "Doing 'sbt genMustMatchersTests4/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genMustMatchersTests4/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genGenTests' ]] ; then
echo "Doing 'sbt genGenTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genGenTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genTablesTests' ]] ; then
echo "Doing 'sbt genTablesTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genTablesTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genInspectorsTests' ]] ; then
echo "Doing 'sbt genInspectorsTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genInspectorsTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genInspectorsShorthandsTests1' ]] ; then
echo "Doing 'sbt genInspectorsShorthandsTests1/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genInspectorsShorthandsTests1/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genInspectorsShorthandsTests2' ]] ; then
echo "Doing 'sbt genInspectorsShorthandsTests2/test'"
export JVM_OPTS="-server -Xms2G -Xmx2G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genInspectorsShorthandsTests2/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genTheyTests' ]] ; then
echo "Doing 'sbt genTheyTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genTheyTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genContainTests1' ]] ; then
echo "Doing 'sbt genContainTests1/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genContainTests1/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genContainTests2' ]] ; then
echo "Doing 'sbt genContainTests2/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genContainTests2/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genSortedTests' ]] ; then
echo "Doing 'sbt genSortedTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genSortedTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genLoneElementTests' ]] ; then
echo "Doing 'sbt genLoneElementTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genLoneElementTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'genEmptyTests' ]] ; then
echo "Doing 'sbt genEmptyTests/test'"
export JVM_OPTS="-server -Xms1G -Xmx3G -Xss1M -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:NewRatio=8 -XX:MaxPermSize=512M -XX:-UseGCOverheadLimit"
while true; do echo "..."; sleep 60; done &
sbt ++$TRAVIS_SCALA_VERSION genEmptyTests/test
rc=$?
kill %1
exit $rc
fi
if [[ $MODE = 'Publish' ]] ; then
sbt ++$TRAVIS_SCALA_VERSION publishSigned
sbt ++$TRAVIS_SCALA_VERSION scalactic/publishSigned
fi