forked from eclipse-hono/hono
-
Notifications
You must be signed in to change notification settings - Fork 2
/
travis.sh
executable file
·60 lines (50 loc) · 1.77 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
53
54
55
56
57
58
59
60
#!/bin/bash
#*******************************************************************************
# Copyright (c) 2016, 2018 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
#*******************************************************************************
#
# For the time being, we are NOT using this script to build Hono anymore
# instead, we are simply invoking mvn install ... from .travis.yml
#
# 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
}
error_handler() {
echo ERROR: An error was encountered with the build.
dump_output
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" &
PING_LOOP_PID=$!
if false && [ "$TRAVIS_EVENT_TYPE" = "cron" ]
then
# Build Qpid Dispatch Router Docker image
cd $TRAVIS_BUILD_DIR/dispatchrouter
mvn process-resources
bash target/qpid-dispatch/build-qpid-dispatch-image.sh
cd $TRAVIS_BUILD_DIR
fi
mvn install verify -Pjavadoc,build-docker-image,run-tests >> $BUILD_OUTPUT 2>&1
# 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