298ab76f1a
NOTRY=true Review URL: https://codereview.chromium.org/1919133003
28 lines
508 B
Bash
Executable File
28 lines
508 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
VERSION=`cat $(dirname $0)/../SKP_VERSION`
|
|
if ! gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps . ; then
|
|
cat >&2 <<EOF
|
|
|
|
Instructions for authenticating.
|
|
|
|
Install the utilities you need:
|
|
curl https://sdk.cloud.google.com | bash
|
|
|
|
Authenticate
|
|
gcloud auth login
|
|
|
|
Follow instructions on web page.
|
|
|
|
Set Project
|
|
gcloud config set project google.com:skia-buildbots
|
|
|
|
EOF
|
|
exit 1
|
|
fi
|