From b8660386eb481a14345ed86719f2a72d5090db0c Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 24 Feb 2022 19:33:13 +0300 Subject: fix(nix/buildkite): Do not set 'branches' attribute in step groups This is no longer accepted by the Buildkite API and causes build failures. Functionality is unchanged since we also set the property on the step itself. Change-Id: Ib0e0908e4093ca4522711170a7179ce4bacafdc0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5324 Autosubmit: tazjin Reviewed-by: ezemtsov Tested-by: BuildkiteCI --- nix/buildkite/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix') diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix index eb8061cf6b..6a0e9d246d 100644 --- a/nix/buildkite/default.nix +++ b/nix/buildkite/default.nix @@ -276,7 +276,7 @@ rec { # Create a gated step in a step group, independent from any other # steps. mkGatedStep = { step, label, parent, prompt }: { - inherit (step) branches depends_on; + inherit (step) depends_on; group = label; skip = parent.skip or false; -- cgit 1.4.1