summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorKonstantinos Natsakis <5933427+knatsakis@users.noreply.github.com>2019-10-30 11:59:28 +0200
committerGitHub <noreply@github.com>2019-10-30 11:59:28 +0200
commit3fde0522c94ee239ed68760c9a7d5fd176290c25 (patch)
treecaacb28a39fb0ca4ea3ce9d08e093689cdc69858 /.travis.yml
parentfdeac75f9c2e83799c7a44a8a8647d5a561ec96e (diff)
.travis.yml: Increase timeout for docker image builds to 20 minutes (#7214)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml11
1 files changed, 5 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 3833be2361..050c6b4b7e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -493,10 +493,10 @@ jobs:
- echo "Last commit:" && git log -1
- echo "GIT Describe:" && git describe
- echo "packaging/version:" && cat packaging/version
- - >-
- packaging/docker/check_login.sh
+ - docker info
+ - packaging/docker/check_login.sh
&& echo "Switching to latest master branch, to pick up tagging if any" && git checkout master && git pull
- && packaging/docker/build.sh
+ && travis_wait 20 packaging/docker/build.sh
&& packaging/docker/publish.sh
after_failure: post_message "TRAVIS_MESSAGE" "<!here> Docker image publishing failed"
@@ -592,9 +592,8 @@ jobs:
- echo "GIT Describe:" && git describe
- echo "packaging/version:" && cat packaging/version
- docker info
- - >-
- packaging/docker/check_login.sh
- && packaging/docker/build.sh
+ - packaging/docker/check_login.sh
+ && travis_wait 20 packaging/docker/build.sh
&& packaging/docker/publish.sh
after_failure: post_message "TRAVIS_MESSAGE" "<!here> Nightly docker image publish failed"