Add verbose flag to flutter run commands (#102257)

This commit is contained in:
Emmanuel Garcia 2022-04-20 22:34:07 -07:00 committed by GitHub
parent f5cf963fa2
commit 3fefb2d5eb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 44 deletions

View file

@ -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
@ -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

View file

@ -21,6 +21,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--debug',
'--verbose',
],
);
});
@ -53,6 +54,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
],
);
});
@ -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',
],
);
});
@ -107,6 +110,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
'--split-per-abi',
'--target-platform=android-arm,android-arm64',
],
@ -145,6 +149,7 @@ Future<void> main() async {
options: <String>[
'apk',
'--release',
'--verbose',
],
);
});