Commit 5e9f51a7 authored by Adam Barth's avatar Adam Barth

Merge pull request #2374 from abarth/rm_cloud

Don't install the Cloud SDK on Travis
parents 9a70e52d f32e5670
#!/bin/bash #!/bin/bash
set -e set -ex
if [ $TRAVIS_PULL_REQUEST = "false" ]; then
echo $KEY_FILE | base64 --decode > gcloud_key_file.json
fi
set -x
# Download dependencies flutter # Download dependencies flutter
./bin/flutter --version ./bin/flutter --version
./bin/flutter update-packages ./bin/flutter update-packages
if [ $TRAVIS_PULL_REQUEST = "false" ]; then
export CLOUDSDK_CORE_DISABLE_PROMPTS=1
curl https://sdk.cloud.google.com | bash
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment