Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CP] Skip impeller goldens on release #51255

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions ci/builders/mac_host_engine.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,14 +183,26 @@
"tests": [
{
"language": "python3",
"name": "Impeller-golden, dart and engine tests for host_release",
"name": "Dart and engine tests for host_release",
"script": "flutter/testing/run_tests.py",
"parameters": [
"--variant",
"host_release",
"--type",
"dart,dart-host,engine,impeller-golden"
"dart,dart-host,engine"
]
},
{
"language": "python3",
"name": "Impeller-golden tests for host_release",
"script": "flutter/testing/run_tests.py",
"parameters": [
"--variant",
"host_release",
"--type",
"impeller-golden"
],
"test_if": "main"
}
]
},
Expand Down