mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Uploading the coverage data file to Google Storage will make it easier for folks to get current coverage data quickly.
16 lines
341 B
Bash
Executable File
16 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo $KEY_FILE | base64 --decode > ../gcloud_key_file.json
|
|
|
|
set -x
|
|
|
|
export CLOUDSDK_CORE_DISABLE_PROMPTS=1
|
|
curl https://sdk.cloud.google.com | bash
|
|
|
|
# disable analytics on the bots and download Flutter dependencies
|
|
./bin/flutter config --no-analytics
|
|
|
|
# run pub get in all the repo packages
|
|
./bin/flutter update-packages
|