Skip to content

Commit b99bfce

Browse files
committed
buildkite: drop explicit "depends_on": None step entries
These were needed when the we still had a `wait` step (to overwrite the `wait` step and instead start immediately), however since #4803 we do not have a `wait` step anymore (instead everything that used to be after the wait step now explicitly depends on the compilation steps). Thus, having the `depends_on: null` entries for kani and style steps is no longer needed (it also does not harm, but it looks ugly in buildkite's canvas view). Signed-off-by: Patrick Roy <[email protected]>
1 parent b7a1e9d commit b99bfce

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

.buildkite/pipeline_pr.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
{
2929
"command": "./tools/devtool -y checkstyle",
3030
"label": "🪶 Style",
31-
"depends_on": None,
3231
},
3332
depends_on_build=False,
3433
)
@@ -66,7 +65,6 @@
6665
# modify Kani steps' label
6766
for step in kani_grp["steps"]:
6867
step["label"] = "🔍 Kani"
69-
kani_grp["depends_on"] = None
7068

7169
if run_all_tests(changed_files):
7270
pipeline.build_group(

0 commit comments

Comments
 (0)