diff options
author | Vincent Ambo <mail@tazj.in> | 2022-02-24T16·33+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-02-24T16·50+0000 |
commit | b8660386eb481a14345ed86719f2a72d5090db0c (patch) | |
tree | 6a0886758a0efebd9eda4383f61cf8438aabe720 /nix | |
parent | aacd03db7e9694d70f670453de3f4ee5e694d8cb (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.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix index eb8061cf6b09..6a0e9d246dab 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; |