Home | History | Annotate | Download | only in bin
      1 #!/bin/sh
      2 # Instructions for authenticating.
      3 #
      4 # Install the utilities you need:
      5 #   curl https://sdk.cloud.google.com | bash
      6 #
      7 # Authenticate
      8 #   gcloud auth login
      9 #
     10 # Follow instructions on web page.
     11 #
     12 # Set Project
     13 #   gcloud config set project google.com:skia-buildbots
     14 
     15 # Copies the latest bot-generated SKP set to ./skps.
     16 
     17 set -x
     18 set -e
     19 
     20 VERSION=`cat $(dirname $0)/../SKP_VERSION`
     21 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps .
     22