Hello I have exhausted all sorts of options i found on web and nothings seems to work for me.
I am pushing changes to a repo which is already setup for cloud build.
This is my yaml file for cloud trigger
steps:
name: "gcr.io/cloud-builders/gcloud"
args: ["app", "deploy", ".yaml"]
timeout: 1200s
It also triggers one extra Google Cloud Storage build in parallel which I cant figure out where is it coming from. It has no ties to the code repo I got. This build times out in 10 minutes and hence causing my main build to fail.
Even if set timeout to 1200 to my step, it seems to have no impact on this cloud storage build. It times out at 10 mins.
TIA
I already have timeouts on steps and build level which is higher than 10minuyes, but this doesnot seem to do the magic on "Google Cloud Storage" build


gcloud config set app/cloud_build_timeout 1200and then trying to run your build withgcloud builds submit? - Daniel Ocando