Skip to content

Commit

Permalink
Add verbose flag to flutter run commands (#102257)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Garcia authored Apr 21, 2022
1 parent f5cf963 commit 3fefb2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 44 deletions.
43 changes: 0 additions & 43 deletions .ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2697,28 +2697,6 @@ targets:
- bin/**
- .ci.yaml

- name: Mac gradle_plugin_fat_apk_test
recipe: devicelab/devicelab_drone
timeout: 60
properties:
caches: >-
[
{"name":"gradle","path":"gradle"}
]
dependencies: >-
[
{"dependency": "android_sdk", "version": "version:31v8"},
{"dependency": "open_jdk", "version": "11"}
]
tags: >
["devicelab","hostonly"]
task_name: gradle_plugin_fat_apk_test
scheduler: luci
runIf:
- dev/**
- bin/**
- .ci.yaml

- name: Mac module_custom_host_app_name_test
recipe: devicelab/devicelab_drone
timeout: 60
Expand Down Expand Up @@ -3900,27 +3878,6 @@ targets:
- bin/**
- .ci.yaml

- name: Windows gradle_plugin_fat_apk_test
bringup: true # Flaky https://github.com/flutter/flutter/issues/101428
recipe: devicelab/devicelab_drone
presubmit: false
timeout: 60
properties:
caches: >-
[
{"name":"gradle","path":"gradle"}
]
dependencies: >-
[
{"dependency": "android_sdk", "version": "version:31v8"},
{"dependency": "chrome_and_driver", "version": "version:96.2"},
{"dependency": "open_jdk", "version": "11"}
]
tags: >
["devicelab","hostonly"]
task_name: gradle_plugin_fat_apk_test
scheduler: luci

- name: Windows hot_mode_dev_cycle_win_target__benchmark
recipe: devicelab/devicelab_drone
presubmit: false
Expand Down
7 changes: 6 additions & 1 deletion dev/devicelab/bin/tasks/gradle_plugin_fat_apk_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--debug',
'--verbose',
],
);
});
Expand Down Expand Up @@ -53,6 +54,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
],
);
});
Expand Down Expand Up @@ -80,7 +82,8 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--target-platform=android-arm,android-arm64'
'--verbose',
'--target-platform=android-arm,android-arm64',
],
);
});
Expand All @@ -107,6 +110,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
'--split-per-abi',
'--target-platform=android-arm,android-arm64',
],
Expand Down Expand Up @@ -145,6 +149,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
],
);
});
Expand Down

0 comments on commit 3fefb2d

Please sign in to comment.