diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-06-29T00·30-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-06-29T00·38+0000 |
commit | 93d1ab7a549143bb9f2e251409de3ac8282da828 (patch) | |
tree | d2a1f8ddd2aad43436e1330b546ef08d4339d9a4 | |
parent | e2273389d579da1666e08f30ef40883a4165bb44 (diff) |
feat(pipelines/depot): Run with --show-trace r/1117
So if an evaluation fails we get a stacktrace Change-Id: I54cdc9e93c765ef7cf3a4d0cd79e6d067f4789d3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/733
-rw-r--r-- | ops/pipelines/depot.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/pipelines/depot.nix b/ops/pipelines/depot.nix index 4c964b4df9b5..3c9ee6b2143f 100644 --- a/ops/pipelines/depot.nix +++ b/ops/pipelines/depot.nix @@ -14,7 +14,7 @@ let # documented on https://buildkite.com/docs/pipelines/defining-steps pipeline.steps = [ { - command = "nix-build -A ciBuilds.__allTargets"; + command = "nix-build -A ciBuilds.__allTargets --show-trace"; label = ":duck:"; } ]; |