Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 202c765 + 114e0dc commit 53f0849Copy full SHA for 53f0849
src/ci/github-actions/calculate-job-matrix.py
@@ -97,9 +97,15 @@ def find_run_type(ctx: GitHubCtx) -> Optional[WorkflowRunType]:
97
"refs/heads/automation/bors/try"
98
)
99
100
+ # Unrolled branch from a rollup for testing perf
101
+ # This should **not** allow custom try jobs
102
+ is_unrolled_perf_build = ctx.ref == "refs/heads/try-perf"
103
+
104
if try_build:
- jobs = get_custom_jobs(ctx)
- return TryRunType(custom_jobs=jobs)
105
+ custom_jobs = []
106
+ if not is_unrolled_perf_build:
107
+ custom_jobs = get_custom_jobs(ctx)
108
+ return TryRunType(custom_jobs=custom_jobs)
109
110
if ctx.ref == "refs/heads/auto":
111
return AutoRunType()
0 commit comments