aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/fetch-skps
blob: bac8e2004ac075546565ad507628f6a52d0ca0ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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