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
68471bbb
Unverified
Commit
68471bbb
authored
Apr 07, 2022
by
Jenn Magder
Committed by
GitHub
Apr 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove --enable-web and --enable-windows-desktop from tests (#101208)
parent
b0de14ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
test.dart
dev/bots/test.dart
+0
-1
framework.dart
dev/devicelab/lib/framework/framework.dart
+1
-3
No files found.
dev/bots/test.dart
View file @
68471bbb
...
...
@@ -588,7 +588,6 @@ Future<void> _flutterBuildWin32(String relativePathToApplication, {
List
<
String
>
additionalArgs
=
const
<
String
>[],
})
async
{
assert
(
Platform
.
isWindows
);
await
runCommand
(
flutter
,
<
String
>[
'config'
,
'--enable-windows-desktop'
]);
print
(
'
${green}
Testing Windows build
$reset
for
$cyan$relativePathToApplication$reset
...'
);
await
_flutterBuild
(
relativePathToApplication
,
'Windows'
,
'windows'
,
release:
release
,
...
...
dev/devicelab/lib/framework/framework.dart
View file @
68471bbb
...
...
@@ -136,14 +136,12 @@ class _TaskRunner {
}
if
(
runFlutterConfig
)
{
print
(
'Enabling configs for macOS
, Linux, Windows, and Web
...'
);
print
(
'Enabling configs for macOS
and Linux
...'
);
final
int
configResult
=
await
exec
(
path
.
join
(
flutterDirectory
.
path
,
'bin'
,
'flutter'
),
<
String
>[
'config'
,
'-v'
,
'--enable-macos-desktop'
,
'--enable-windows-desktop'
,
'--enable-linux-desktop'
,
'--enable-web'
,
if
(
localEngine
!=
null
)
...<
String
>[
'--local-engine'
,
localEngine
],
],
canFail:
true
);
if
(
configResult
!=
0
)
{
...
...
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