From 65a17fe52b24db1fdf7f8a07467ede1489ae8a6c Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Mon, 16 Feb 2026 07:56:06 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- tools/build/linux_build_and_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build/linux_build_and_test.sh b/tools/build/linux_build_and_test.sh index be3c6fbf..c2e24562 100644 --- a/tools/build/linux_build_and_test.sh +++ b/tools/build/linux_build_and_test.sh @@ -55,12 +55,12 @@ GCS_LOCATION="cprof-e2e-nodejs-artifacts/pprof-nodejs/kokoro/${BUILD_TYPE}/${KOK retry gcloud auth activate-service-account \ --key-file="${KOKORO_KEYSTORE_DIR}/72935_cloud-profiler-e2e-service-account-key" -retry gsutil cp -r "${BASE_DIR}/artifacts/." "gs://${GCS_LOCATION}/" +retry gcloud storage cp --recursive "${BASE_DIR}/artifacts/." "gs://${GCS_LOCATION}/" # Test the agent export BINARY_HOST="https://storage.googleapis.com/${GCS_LOCATION}" "${BASE_DIR}/system-test/system_test.sh" if [ "$BUILD_TYPE" == "release" ]; then - retry gsutil cp -r "${BASE_DIR}/artifacts/." "gs://cloud-profiler/pprof-nodejs/release" + retry gcloud storage cp --recursive "${BASE_DIR}/artifacts/." "gs://cloud-profiler/pprof-nodejs/release" fi