forked from Lumeer/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravis.sh
executable file
·52 lines (41 loc) · 1.53 KB
/
travis.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
#!/bin/bash
# Abort on Error
set -e
export PING_SLEEP=30s
#export WORKDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
#export BUILD_OUTPUT=$WORKDIR/build.out
#touch $BUILD_OUTPUT
#dump_output() {
# echo Tailing the last 500 lines of output:
# #tail -500 $BUILD_OUTPUT
# cat $BUILD_OUTPUT
#}
error_handler() {
[ -e target/rat.txt ] && cat target/rat.txt
echo
echo "-------------------------------------------------------"
echo ERROR: An error was encountered with the build.
#dump_output
echo ERROR: Test results:
find . -name 'Surefire test.xml' -exec cat {} \;
#find . -name 'Command line test.xml' -exec cat {} \;
# nicely terminate the ping output loop
kill $PING_LOOP_PID
exit 1
}
# If an error occurs, run our error handler to output a tail of the build
trap 'error_handler' ERR
# Set up a repeating loop to send some output to Travis.
bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
export PING_LOOP_PID=$!
# My build is using maven, but you could build anything with this, E.g.
# your_build_command_1
# your_build_command_2
export LUMEER_HOME=$(pwd)/war
export LUMEER_DEFAULTS=defaults-ci.properties
mvn -P-default install -Dlumeer.db.host=ds119508.mlab.com -Dlumeer.db.port=19508 -Dlumeer.db.name=lumeer-ci
#mvn -l $BUILD_OUTPUT -P-default install -Dlumeer.db.host=ds119508.mlab.com -Dlumeer.db.port=19508 -Dlumeer.db.name=lumeer-ci
# The build finished without returning an error so dump a tail of the output
#dump_output
# nicely terminate the ping output loop
kill $PING_LOOP_PID