From 51a38bdc1a9e731c26d18a2d13e6889bb5d42fe0 Mon Sep 17 00:00:00 2001
From: Ray Wainman <rwainman@google.com>
Date: Wed, 30 Apr 2025 15:55:53 -0400
Subject: [PATCH] Bump build time and remove parallel builds (they don't work)

---
 vertical-pod-autoscaler/cloudbuild.yaml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/vertical-pod-autoscaler/cloudbuild.yaml b/vertical-pod-autoscaler/cloudbuild.yaml
index e6302461c1..d0aaaee795 100644
--- a/vertical-pod-autoscaler/cloudbuild.yaml
+++ b/vertical-pod-autoscaler/cloudbuild.yaml
@@ -1,5 +1,5 @@
 # See https://cloud.google.com/cloud-build/docs/build-config
-timeout: 3600s
+timeout: 7200s
 # this prevents errors if you don't use both _GIT_TAG and _PULL_BASE_REF,
 # or any new substitutions added in the future.
 options:
@@ -19,7 +19,6 @@ steps:
       - TAG=$_GIT_TAG
     args:
       - release
-    waitFor: ['-']  # The '-' indicates that this step begins immediately.
   - name: "gcr.io/k8s-staging-test-infra/gcb-docker-gcloud:latest"
     dir: pkg/updater
     entrypoint: make
@@ -27,6 +26,5 @@ steps:
       - TAG=$_GIT_TAG
     args:
       - release
-    waitFor: ['-']  # The '-' indicates that this step begins immediately.
 substitutions:
   _GIT_TAG: "0.0.0" # default value, this is substituted at build time
-- 
GitLab