about summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-02-24T16·33+0300
committerclbot <clbot@tvl.fyi>2022-02-24T16·50+0000
commitb8660386eb481a14345ed86719f2a72d5090db0c (patch)
tree6a0886758a0efebd9eda4383f61cf8438aabe720 /nix
parentaacd03db7e9694d70f670453de3f4ee5e694d8cb (diff)
fix(nix/buildkite): Do not set 'branches' attribute in step groups r/3866
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 <tazjin@tvl.su>
Reviewed-by: ezemtsov <eugene.zemtsov@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'nix')
-rw-r--r--nix/buildkite/default.nix2
1 files changed, 1 insertions, 1 deletions
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;