Increase travis-ci script timeouts [ci skip] (#1855)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-12-26 23:03:02 -03:00 committed by GitHub
parent 6a34e9c261
commit 6a9faaa27a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,20 +55,20 @@ jobs:
- stage: publish amd64 - stage: publish amd64
if: type = api AND branch = master AND repo = kubernetes/ingress-nginx if: type = api AND branch = master AND repo = kubernetes/ingress-nginx
script: script:
- ARCH=amd64 .travis/publish.sh - travis_wait 240 ARCH=amd64 .travis/publish.sh
- stage: publish arm - stage: publish arm
if: type = api AND branch = master AND repo = kubernetes/ingress-nginx if: type = api AND branch = master AND repo = kubernetes/ingress-nginx
script: script:
- ARCH=arm .travis/publish.sh - travis_wait 240 ARCH=arm .travis/publish.sh
- stage: publish arm64 - stage: publish arm64
if: type = api AND branch = master AND repo = kubernetes/ingress-nginx if: type = api AND branch = master AND repo = kubernetes/ingress-nginx
script: script:
- ARCH=arm64 .travis/publish.sh - travis_wait 240 ARCH=arm64 .travis/publish.sh
- stage: publish ppc64le - stage: publish ppc64le
if: type = api AND branch = master AND repo = kubernetes/ingress-nginx if: type = api AND branch = master AND repo = kubernetes/ingress-nginx
script: script:
- ARCH=ppc64le .travis/publish.sh - travis_wait 240 ARCH=ppc64le .travis/publish.sh
- stage: publish s390x - stage: publish s390x
if: type = api AND branch = master AND repo = kubernetes/ingress-nginx if: type = api AND branch = master AND repo = kubernetes/ingress-nginx
script: script:
- ARCH=s390x .travis/publish.sh - travis_wait 240 ARCH=s390x .travis/publish.sh