diff options
Diffstat (limited to 'nix')
-rw-r--r-- | nix/buildkite/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix index 08be8f38c93d..c53d58eecdae 100644 --- a/nix/buildkite/default.nix +++ b/nix/buildkite/default.nix @@ -86,7 +86,9 @@ rec { depends_on = [ ":init:" ] ++ lib.optionals (target ? meta.ci.buildkiteExtraDeps) target.meta.ci.buildkiteExtraDeps; } // lib.optionalAttrs (target ? meta.timeout) { timeout_in_minutes = target.meta.timeout / 60; - }; + # Additional arguments to set on the step. + # Keep in mind these *overwrite* existing step args, not extend. Use with caution. + } // lib.optionalAttrs (target ? meta.ci.buildkiteExtraStepArgs) target.meta.ci.buildkiteExtraStepArgs; # Helper function to inelegantly divide a list into chunks of at # most n elements. |