File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 11os :
22 - linux
3- sudo : required
3+ sudo : false
44addons :
55 apt :
66 # sky_shell binary depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
2222before_script :
2323 - ./dev/bots/travis_setup.sh
2424script :
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)
2627cache :
2728 directories :
2829 - $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
55
66set -x
77
8- if [ -n " $TRAVIS " ]; 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
1213
1314# disable analytics on the bots and download Flutter dependencies
1415./bin/flutter config --no-analytics
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Future<Null> main(List<String> args) async {
2323 final String objcdocUrl =
2424 'https://storage.googleapis.com/flutter_infra/flutter/$engineVersion /ios-objcdoc.zip' ;
2525 generateDocs (
26- objcdocUrl, 'objcdoc' , 'Classes/FlutterViewController.html' );
26+ objcdocUrl, 'objcdoc' , 'objc/ Classes/FlutterViewController.html' );
2727}
2828
2929Future <Null > generateDocs (
You can’t perform that action at this time.
0 commit comments