Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .buildkite/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,9 @@ def build_group(self, *args, **kwargs):

https://buildkite.com/docs/pipelines/group-step
"""
decorate = kwargs.pop("decorate", True)
combined = overlay_dict(self.per_instance, kwargs)
return self.add_step(group(*args, **combined))
return self.add_step(group(*args, **combined), decorate=decorate)

def build_group_per_arch(self, *args, **kwargs):
"""
Expand Down
2 changes: 2 additions & 0 deletions .buildkite/pipeline_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,12 @@
platforms=[("al2", "linux_5.10")],
timeout_in_minutes=300,
**DEFAULTS_PERF,
decorate=False,
)
# modify Kani steps' label
for step in kani_grp["steps"]:
step["label"] = "🔍 Kani"
kani_grp["depends_on"] = None

if run_all_tests(changed_files):
pipeline.build_group(
Expand Down
Loading