Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit eac89bd

Browse files
chore: Migrate gsutil usage to gcloud storage
1 parent 7261a4e commit eac89bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.kokoro/release-nightly.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ for gcs_path in gs://vertex_sdk_private_releases/bigframe/ \
9393
gs://dl-platform-colab/bigframes/ \
9494
gs://bigframes-wheels/;
9595
do
96-
gsutil cp -v dist/* ${gcs_path}
97-
gsutil cp -v LICENSE ${gcs_path}
98-
gsutil -m cp -r -v "notebooks/" ${gcs_path}notebooks/
96+
gcloud storage cp --print-created-message dist/* ${gcs_path}
97+
gcloud storage cp --print-created-message LICENSE ${gcs_path}
98+
gcloud storage cp --recursive --print-created-message "notebooks/" ${gcs_path}notebooks/
9999

100100
done
101101

.kokoro/trampoline_v2.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# To run this script, first download few files from gcs to /dev/shm.
2727
# (/dev/shm is passed into the container as KOKORO_GFILE_DIR).
2828
#
29-
# gsutil cp gs://cloud-devrel-kokoro-resources/python-docs-samples/secrets_viewer_service_account.json /dev/shm
30-
# gsutil cp gs://cloud-devrel-kokoro-resources/python-docs-samples/automl_secrets.txt /dev/shm
29+
# gcloud storage cp gs://cloud-devrel-kokoro-resources/python-docs-samples/secrets_viewer_service_account.json /dev/shm
30+
# gcloud storage cp gs://cloud-devrel-kokoro-resources/python-docs-samples/automl_secrets.txt /dev/shm
3131
#
3232
# Then run the script.
3333
# .kokoro/trampoline_v2.sh

0 commit comments

Comments
 (0)