File tree Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Expand file tree Collapse file tree 3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 22
22
before_script :
23
23
- ./dev/bots/travis_setup.sh
24
24
script :
25
- - (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart && ./dev/bots/travis_upload.sh)
25
+ # TODO(tvolkert): Re-enable `&& ./dev/bots/travis_upload.sh`
26
+ - (./bin/cache/dart-sdk/bin/dart ./dev/bots/test.dart)
26
27
cache :
27
28
directories :
28
29
- $HOME/.pub-cache
Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ echo $KEY_FILE | base64 --decode > ../gcloud_key_file.json
5
5
6
6
set -x
7
7
8
- if [ -n " $TRAVIS " ] && [ " $TRAVIS_PULL_REQUEST " == " false" ]; then
9
- export CLOUDSDK_CORE_DISABLE_PROMPTS=1
10
- curl https://sdk.cloud.google.com | bash
11
- fi
8
+ # TODO(tvolkert): Re-enable once this is able to successfully run on Travis
9
+ # if [ -n "$TRAVIS" ] && [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
10
+ # export CLOUDSDK_CORE_DISABLE_PROMPTS=1
11
+ # curl https://sdk.cloud.google.com | bash
12
+ # fi
12
13
13
14
# disable analytics on the bots and download Flutter dependencies
14
15
./bin/flutter config --no-analytics
Original file line number Diff line number Diff line change @@ -6,7 +6,10 @@ export PATH="$PWD/bin:$PWD/bin/cache/dart-sdk/bin:$PATH"
6
6
7
7
LCOV_FILE=./packages/flutter/coverage/lcov.info
8
8
9
- if [ " $SHARD " = " coverage" ] && [ " $TRAVIS_PULL_REQUEST " = " false" ] && [ " $TRAVIS_BRANCH " = " master" ] && [ -f " $LCOV_FILE " ]; then
9
+ if [ " $SHARD " = " coverage" ] && \
10
+ [ " $TRAVIS_PULL_REQUEST " = " false" ] && \
11
+ [ " $TRAVIS_BRANCH " = " master" ] && \
12
+ [ -f " $LCOV_FILE " ]; then
10
13
GSUTIL=$HOME /google-cloud-sdk/bin/gsutil
11
14
GCLOUD=$HOME /google-cloud-sdk/bin/gcloud
12
15
You can’t perform that action at this time.
0 commit comments