For users specifically struggling to get an App Engine build triggered by Cloud Build to respect the timeouts specified in the build step yaml, using bash in the Cloud Build step worked for me:
- name: 'gcr.io/cloud-builders/gcloud' entrypoint: 'bash' args: ['-c', 'gcloud config set app/cloud_build_timeout 1800 && gcloud app deploy my-service/my-config.yaml'] Setting "timeout:" in the build step didn't work for me, perhaps because it doesn't actually call gcloud config set app/cloud_build_timeout. I found the tip here: https://stackoverflow.com/questions/60070274/why-cant-i-override-the-timeout-on-my-google-cloud-build -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/71ec7df1-e519-48ac-8591-81691f75b4f2%40googlegroups.com.
