From b85596d307eba963fa655cedb0cece39ed31b81f Mon Sep 17 00:00:00 2001 From: Yuan Teoh <45984206+Yuan325@users.noreply.github.com> Date: Fri, 7 Nov 2025 11:08:44 -0800 Subject: [PATCH] ci: add worker pool to release (#1900) Added a new worker pool in release cloud build that uses `n2d-standard-64` machine, with disk size 100GB. removed the `machineType` since it's indicated in the worker pool. Release-As: 0.20.0 --- .ci/continuous.release.cloudbuild.yaml | 3 ++- .ci/versioned.release.cloudbuild.yaml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.ci/continuous.release.cloudbuild.yaml b/.ci/continuous.release.cloudbuild.yaml index 923ec38391c..e980ba6c654 100644 --- a/.ci/continuous.release.cloudbuild.yaml +++ b/.ci/continuous.release.cloudbuild.yaml @@ -186,7 +186,8 @@ options: automapSubstitutions: true dynamicSubstitutions: true logging: CLOUD_LOGGING_ONLY # Necessary for custom service account - machineType: 'E2_HIGHCPU_32' + pool: + name: projects/$PROJECT_ID/locations/us-central1/workerPools/run-release # to increase resource for running releases substitutions: _REGION: us-central1 diff --git a/.ci/versioned.release.cloudbuild.yaml b/.ci/versioned.release.cloudbuild.yaml index 3da295f34a8..8f57a2ecb0f 100644 --- a/.ci/versioned.release.cloudbuild.yaml +++ b/.ci/versioned.release.cloudbuild.yaml @@ -233,7 +233,9 @@ options: automapSubstitutions: true dynamicSubstitutions: true logging: CLOUD_LOGGING_ONLY # Necessary for custom service account - machineType: 'E2_HIGHCPU_32' + pool: + name: projects/$PROJECT_ID/locations/us-central1/workerPools/run-release # to increase resource for running releases + substitutions: _REGION: us-central1