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
45584b25
Unverified
Commit
45584b25
authored
Sep 28, 2022
by
Jesús S Guerrero
Committed by
GitHub
Sep 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Web subsharding (#112505)
parent
cd3beb4f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
5 deletions
+36
-5
.ci.yaml
.ci.yaml
+27
-4
test.dart
dev/bots/test.dart
+9
-1
No files found.
.ci.yaml
View file @
45584b25
...
...
@@ -1249,7 +1249,7 @@ targets:
{"dependency": "goldctl", "version": "git_revision:3a77d0b12c697a840ca0c7705208e8622dc94603"}
]
shard: web_tool_tests
subshard:
web
subshard:
"1_1"
tags: >
["framework", "hostonly", "shard", "linux"]
runIf
:
...
...
@@ -3055,7 +3055,7 @@ targets:
{"dependency": "goldctl", "version": "git_revision:3a77d0b12c697a840ca0c7705208e8622dc94603"}
]
shard: web_tool_tests
subshard:
web
subshard:
"1_1"
tags: >
["framework", "hostonly", "shard", "mac"]
runIf
:
...
...
@@ -4291,7 +4291,8 @@ targets:
-
bin/**
-
.ci.yaml
-
name
:
Windows web_tool_tests
-
name
:
Windows web_tool_tests_1_2
bringup
:
true
recipe
:
flutter/flutter_drone
timeout
:
60
properties
:
...
...
@@ -4303,7 +4304,7 @@ targets:
{"dependency": "goldctl", "version": "git_revision:3a77d0b12c697a840ca0c7705208e8622dc94603"}
]
shard: web_tool_tests
subshard:
web
subshard:
"1_2"
tags: >
["framework", "hostonly", "shard", "windows"]
runIf
:
...
...
@@ -4312,6 +4313,28 @@ targets:
-
bin/**
-
.ci.yaml
-
name
:
Windows web_tool_tests_2_2
bringup
:
true
recipe
:
flutter/flutter_drone
timeout
:
60
properties
:
dependencies
:
>-
[
{"dependency": "android_sdk", "version": "version:33v6"},
{"dependency": "chrome_and_driver", "version": "version:96.2"},
{"dependency": "open_jdk", "version": "version:11"},
{"dependency": "goldctl", "version": "git_revision:3a77d0b12c697a840ca0c7705208e8622dc94603"}
]
shard: web_tool_tests
subshard: "2_2"
tags: >
["framework", "hostonly", "shard"]
runIf
:
-
dev/**
-
packages/flutter_tools/**
-
bin/**
-
.ci.yaml
-
name
:
Windows windows_home_scroll_perf__timeline_summary
recipe
:
devicelab/devicelab_drone
timeout
:
60
...
...
dev/bots/test.dart
View file @
45584b25
...
...
@@ -429,10 +429,18 @@ Future<void> _runCommandsToolTests() async {
}
Future
<
void
>
_runWebToolTests
()
async
{
final
List
<
File
>
allFiles
=
Directory
(
path
.
join
(
_toolsPath
,
'test'
,
'web.shard'
))
.
listSync
(
recursive:
true
).
whereType
<
File
>().
toList
();
final
List
<
String
>
allTests
=
<
String
>[];
for
(
final
File
file
in
allFiles
)
{
if
(
file
.
path
.
endsWith
(
'_test.dart'
))
{
allTests
.
add
(
file
.
path
);
}
}
await
_runDartTest
(
_toolsPath
,
forceSingleCore:
true
,
testPaths:
<
String
>[
path
.
join
(
'test'
,
'web.shard'
)]
,
testPaths:
_selectIndexOfTotalSubshard
<
String
>(
allTests
)
,
includeLocalEngineEnv:
true
,
);
}
...
...
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