Increase travis-ci script timeouts [ci skip] (#1855)
This commit is contained in:
parent
6a34e9c261
commit
6a9faaa27a
1 changed files with 5 additions and 5 deletions
10
.travis.yml
10
.travis.yml
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue