Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
3fefb2d5
Unverified
Commit
3fefb2d5
authored
Apr 21, 2022
by
Emmanuel Garcia
Committed by
GitHub
Apr 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add verbose flag to flutter run commands (#102257)
parent
f5cf963f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
44 deletions
+6
-44
.ci.yaml
.ci.yaml
+0
-43
gradle_plugin_fat_apk_test.dart
dev/devicelab/bin/tasks/gradle_plugin_fat_apk_test.dart
+6
-1
No files found.
.ci.yaml
View file @
3fefb2d5
...
...
@@ -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
...
...
dev/devicelab/bin/tasks/gradle_plugin_fat_apk_test.dart
View file @
3fefb2d5
...
...
@@ -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'
,
],
);
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment