diff --git a/.buildkite/common.py b/.buildkite/common.py index 4def18440d6..a479f59cc73 100644 --- a/.buildkite/common.py +++ b/.buildkite/common.py @@ -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): """ diff --git a/.buildkite/pipeline_pr.py b/.buildkite/pipeline_pr.py index c30c2253c63..8af96e0b64b 100755 --- a/.buildkite/pipeline_pr.py +++ b/.buildkite/pipeline_pr.py @@ -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(