From 809ec50bbfff38c2934cd4561f97e4b099dcf99f Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Fri, 20 Feb 2026 08:53:16 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- cloudbuild.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cloudbuild.yaml b/cloudbuild.yaml index b5ceda7..306f9c3 100644 --- a/cloudbuild.yaml +++ b/cloudbuild.yaml @@ -13,8 +13,8 @@ # the License. steps: -- name: 'gcr.io/cloud-builders/gsutil' - args: ['-q', '-m', 'rsync', '-r', '${_GCS_CACHE_PATH}', '/m2_cache'] +- name: 'gcr.io/cloud-builders/gcloud' + args: ['storage', 'rsync', '--recursive', '${_GCS_CACHE_PATH}', '/m2_cache'] volumes: - path: '/m2_cache' name: 'm2_cache' @@ -27,8 +27,8 @@ steps: volumes: - path: '/m2_cache' name: 'm2_cache' -- name: 'gcr.io/cloud-builders/gsutil' - args: ['-q', '-m', 'rsync', '-r', '/m2_cache', '${_GCS_CACHE_PATH}'] +- name: 'gcr.io/cloud-builders/gcloud' + args: ['storage', 'rsync', '--recursive', '/m2_cache', '${_GCS_CACHE_PATH}'] volumes: - path: '/m2_cache' name: 'm2_cache'