OLD | NEW |
1 #!/bin/sh | 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 |
2 | 14 |
3 # Copies the latest bot-generated SKP set to ./skps. | 15 # Copies the latest bot-generated SKP set to ./skps. |
4 | 16 |
5 set -x | 17 set -x |
6 set -e | 18 set -e |
7 | 19 |
8 VERSION=`cat $(dirname $0)/../SKP_VERSION` | 20 VERSION=`cat $(dirname $0)/../SKP_VERSION` |
9 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps . | 21 gsutil -m cp -r gs://chromium-skia-gm/playback_$VERSION/skps . |
OLD | NEW |