ea73fa529f
BUG=skia: Review URL: https://codereview.chromium.org/1305143002
22 lines
450 B
Bash
Executable File
22 lines
450 B
Bash
Executable File
#!/bin/sh
|
|
# 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
|
|
|
|
# Copies the latest bot-generated SKP set to ./skps.
|
|
|
|
set -x
|
|
set -e
|
|
|
|
VERSION=`cat $(dirname $0)/../SKP_VERSION`
|
|
gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps .
|