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.
1 parent eca2884 commit bb9345aCopy full SHA for bb9345a
.github/scripts/extract_matrix.py
@@ -276,8 +276,10 @@ def __gt__(self, other):
276
def get_tagged_jobs(buildspec, target, filter=None):
277
jobs = [Job({"name": target}).to_dict()]
278
for job in sorted([Job(build) for build in buildspec.get("builds", [])]):
279
- if not any(t for t in job.targets if t in [target, "weekly"]):
280
- continue
+ if not any(t for t in job.targets if t in [target]):
+ if "weekly" in job.targets and target == "tier1": pass
281
+ else:
282
+ continue
283
if filter and not re.match(filter, job.name):
284
continue
285
if [x for x in JOB_EXCLUSION_TERMS if x in str(job)]:
0 commit comments