skia2/bin/fetch-skps
2016-04-26 12:38:47 -07:00

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