running web tests only on DEPS and web directories (#21613)

* running web tests only on DEPS and web directories

* adding more folders to skip tests
This commit is contained in:
nturgut 2020-10-06 13:16:03 -07:00 committed by GitHub
parent 96dcec093a
commit 9338516ee4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,13 +28,30 @@
{
"name":"Linux Web Engine",
"repo":"engine",
"enabled": true
"enabled": true,
"run_if": [
"DEPS",
"lib/web_ui/**",
"web_sdk/**",
"e2etests/web/**",
"tools/**",
"ci/**",
"flutter_frontend_server/**"
]
},
{
"name":"Linux Web Framework tests",
"repo":"engine",
"enabled": true,
"run_if": ["DEPS", "lib/web_ui/**", "web_sdk/**"]
"run_if": [
"DEPS",
"lib/web_ui/**",
"web_sdk/**",
"e2etests/web/**",
"tools/**",
"ci/**",
"flutter_frontend_server/**"
]
},
{
"name":"Mac Android AOT Engine",
@ -59,7 +76,16 @@
{
"name":"Mac Web Engine",
"repo":"engine",
"enabled": true
"enabled": true,
"run_if": [
"DEPS",
"lib/web_ui/**",
"web_sdk/**",
"e2etests/web/**",
"tools/**",
"ci/**",
"flutter_frontend_server/**"
]
},
{
"name":"Windows Android AOT Engine",
@ -74,7 +100,8 @@
{
"name":"Windows Web Engine",
"repo":"engine",
"enabled": true
"enabled": true,
"run_if": ["DEPS", "lib/web_ui/**", "web_sdk/**"]
}
]
}