Unverified Commit 3fefb2d5 authored by Emmanuel Garcia's avatar Emmanuel Garcia Committed by GitHub

Add verbose flag to flutter run commands (#102257)

parent f5cf963f
...@@ -2697,28 +2697,6 @@ targets: ...@@ -2697,28 +2697,6 @@ targets:
- bin/** - bin/**
- .ci.yaml - .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 - name: Mac module_custom_host_app_name_test
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
timeout: 60 timeout: 60
...@@ -3900,27 +3878,6 @@ targets: ...@@ -3900,27 +3878,6 @@ targets:
- bin/** - bin/**
- .ci.yaml - .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 - name: Windows hot_mode_dev_cycle_win_target__benchmark
recipe: devicelab/devicelab_drone recipe: devicelab/devicelab_drone
presubmit: false presubmit: false
......
...@@ -21,6 +21,7 @@ Future<void> main() async { ...@@ -21,6 +21,7 @@ Future<void> main() async {
options: <String>[ options: <String>[
'apk', 'apk',
'--debug', '--debug',
'--verbose',
], ],
); );
}); });
...@@ -53,6 +54,7 @@ Future<void> main() async { ...@@ -53,6 +54,7 @@ Future<void> main() async {
options: <String>[ options: <String>[
'apk', 'apk',
'--release', '--release',
'--verbose',
], ],
); );
}); });
...@@ -80,7 +82,8 @@ Future<void> main() async { ...@@ -80,7 +82,8 @@ Future<void> main() async {
options: <String>[ options: <String>[
'apk', 'apk',
'--release', '--release',
'--target-platform=android-arm,android-arm64' '--verbose',
'--target-platform=android-arm,android-arm64',
], ],
); );
}); });
...@@ -107,6 +110,7 @@ Future<void> main() async { ...@@ -107,6 +110,7 @@ Future<void> main() async {
options: <String>[ options: <String>[
'apk', 'apk',
'--release', '--release',
'--verbose',
'--split-per-abi', '--split-per-abi',
'--target-platform=android-arm,android-arm64', '--target-platform=android-arm,android-arm64',
], ],
...@@ -145,6 +149,7 @@ Future<void> main() async { ...@@ -145,6 +149,7 @@ Future<void> main() async {
options: <String>[ options: <String>[
'apk', 'apk',
'--release', '--release',
'--verbose',
], ],
); );
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment