Skip to content

Commit e64e468

Browse files
Hixiegspencergoog
authored andcommitted
Revert "Re-enable coverage and docs uploading (flutter#10995)" (flutter#10999)
This reverts commit aa904a5.
1 parent cbe399a commit e64e468

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ env:
2222
before_script:
2323
- ./dev/bots/travis_setup.sh
2424
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)
2627
cache:
2728
directories:
2829
- $HOME/.pub-cache

dev/bots/travis_setup.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ echo $KEY_FILE | base64 --decode > ../gcloud_key_file.json
55

66
set -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

dev/tools/java_and_objc_doc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2929
Future<Null> generateDocs(

0 commit comments

Comments
 (0)