1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

cloudbuild.yaml: increase timeout to 1h 20min

Fourth timeout increase's the charm.
This commit is contained in:
Markus Lehtonen 2022-01-20 22:20:46 +02:00
parent f8d83462ea
commit 5e90343fc9
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
timeout: 3600s timeout: 4800s
steps: steps:
- name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90 - name: gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:v20211118-2f2d816b90
entrypoint: scripts/test-infra/push-image.sh entrypoint: scripts/test-infra/push-image.sh

View file

@ -19,11 +19,11 @@ i=1
while true; do while true; do
if make poll-images; then if make poll-images; then
break break
elif [ $i -ge 62 ]; then elif [ $i -ge 50 ]; then
echo "ERROR: too many tries when polling for image" echo "ERROR: too many tries when polling for image"
exit 1 exit 1
fi fi
sleep 60 sleep 100
i=$(( $i + 1 )) i=$(( $i + 1 ))
done done