summaryrefslogtreecommitdiffstats
path: root/travis
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2017-11-17 15:53:05 +0100
committerGitHub <noreply@github.com>2017-11-17 15:53:05 +0100
commit54f4e82f3b72162208d0bc0cd095e93927e48c51 (patch)
treefd1f697ef9936e54a866f986bb02fc4f480652b7 /travis
parenta7fb26f098bd70f9f9e94b52313e7e7f4d44f33f (diff)
Fix workaround for log timeout
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/travis.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/travis/travis.sh b/travis/travis.sh
index 5b246b64fb9..77bfebf2505 100755
--- a/travis/travis.sh
+++ b/travis/travis.sh
@@ -5,7 +5,7 @@ set -e
# Workaround for Travis log output timeout (jobs without output over 10 minutes are killed)
function bell() {
while true; do
- echo -e "\a"
+ echo "."
sleep 300
done
}
@@ -16,4 +16,3 @@ bell &
docker run --rm -v ${HOME}/.m2:/root/.m2 -v ${HOME}/.ccache:/root/.ccache -v $(pwd):/source \
--entrypoint /source/travis/travis-build-full.sh ${DOCKER_IMAGE}
exit $?
-