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
8c3d7e95
Unverified
Commit
8c3d7e95
authored
Feb 05, 2024
by
Jenn Magder
Committed by
GitHub
Feb 05, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run examples_smoke_test on Linux (#142736)
Flutter apps run on Linux. Remove TODO.
parent
e5a922fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
test.dart
dev/bots/test.dart
+10
-13
No files found.
dev/bots/test.dart
View file @
8c3d7e95
...
@@ -841,19 +841,16 @@ Future<void> _runFrameworkTests() async {
...
@@ -841,19 +841,16 @@ Future<void> _runFrameworkTests() async {
}
}
Future
<
void
>
runExampleTests
()
async
{
Future
<
void
>
runExampleTests
()
async
{
// TODO(gspencergoog): Currently Linux LUCI bots can't run desktop Flutter applications, https://github.com/flutter/flutter/issues/90676
await
runCommand
(
if
(!
Platform
.
isLinux
||
ciProvider
!=
CiProviders
.
luci
)
{
flutter
,
await
runCommand
(
<
String
>[
'config'
,
'--enable-
${Platform.operatingSystem}
-desktop'
],
flutter
,
workingDirectory:
flutterRoot
,
<
String
>[
'config'
,
'--enable-
${Platform.operatingSystem}
-desktop'
],
);
workingDirectory:
flutterRoot
,
await
runCommand
(
);
dart
,
await
runCommand
(
<
String
>[
path
.
join
(
flutterRoot
,
'dev'
,
'tools'
,
'examples_smoke_test.dart'
)],
dart
,
workingDirectory:
path
.
join
(
flutterRoot
,
'examples'
,
'api'
),
<
String
>[
path
.
join
(
flutterRoot
,
'dev'
,
'tools'
,
'examples_smoke_test.dart'
)],
);
workingDirectory:
path
.
join
(
flutterRoot
,
'examples'
,
'api'
),
);
}
for
(
final
FileSystemEntity
entity
in
Directory
(
path
.
join
(
flutterRoot
,
'examples'
)).
listSync
())
{
for
(
final
FileSystemEntity
entity
in
Directory
(
path
.
join
(
flutterRoot
,
'examples'
)).
listSync
())
{
if
(
entity
is
!
Directory
||
!
Directory
(
path
.
join
(
entity
.
path
,
'test'
)).
existsSync
())
{
if
(
entity
is
!
Directory
||
!
Directory
(
path
.
join
(
entity
.
path
,
'test'
)).
existsSync
())
{
continue
;
continue
;
...
...
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