Skip to content

Commit 9338516

Browse files
author
nturgut
authored
running web tests only on DEPS and web directories (flutter#21613)
* running web tests only on DEPS and web directories * adding more folders to skip tests
1 parent 96dcec0 commit 9338516

File tree

1 file changed

+31
-4
lines changed

1 file changed

+31
-4
lines changed

ci/dev/try_builders.json

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,30 @@
2828
{
2929
"name":"Linux Web Engine",
3030
"repo":"engine",
31-
"enabled": true
31+
"enabled": true,
32+
"run_if": [
33+
"DEPS",
34+
"lib/web_ui/**",
35+
"web_sdk/**",
36+
"e2etests/web/**",
37+
"tools/**",
38+
"ci/**",
39+
"flutter_frontend_server/**"
40+
]
3241
},
3342
{
3443
"name":"Linux Web Framework tests",
3544
"repo":"engine",
3645
"enabled": true,
37-
"run_if": ["DEPS", "lib/web_ui/**", "web_sdk/**"]
46+
"run_if": [
47+
"DEPS",
48+
"lib/web_ui/**",
49+
"web_sdk/**",
50+
"e2etests/web/**",
51+
"tools/**",
52+
"ci/**",
53+
"flutter_frontend_server/**"
54+
]
3855
},
3956
{
4057
"name":"Mac Android AOT Engine",
@@ -59,7 +76,16 @@
5976
{
6077
"name":"Mac Web Engine",
6178
"repo":"engine",
62-
"enabled": true
79+
"enabled": true,
80+
"run_if": [
81+
"DEPS",
82+
"lib/web_ui/**",
83+
"web_sdk/**",
84+
"e2etests/web/**",
85+
"tools/**",
86+
"ci/**",
87+
"flutter_frontend_server/**"
88+
]
6389
},
6490
{
6591
"name":"Windows Android AOT Engine",
@@ -74,7 +100,8 @@
74100
{
75101
"name":"Windows Web Engine",
76102
"repo":"engine",
77-
"enabled": true
103+
"enabled": true,
104+
"run_if": ["DEPS", "lib/web_ui/**", "web_sdk/**"]
78105
}
79106
]
80107
}

0 commit comments

Comments
 (0)