Skip to content

Commit cef8659

Browse files
committed
[DDW-1083] Simplify .buildkite/pipeline.yml
1 parent 37b2ed2 commit cef8659

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.buildkite/pipeline.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,28 @@ env:
44

55
steps:
66

7-
# XXX: `|& cat`:
8-
# • turns off any interactive questions from Nix (e.g. accept-flake-config)
9-
# • turns off the progress bar which bloats raw logs
10-
# • keeps `derivation-name> ` prefix in logs
11-
# • but also kills colors :-(
7+
# XXX: `</dev/null turns off any interactive questions from Nix (e.g. accept-flake-config)
128

139
- label: 'daedalus-x86_64-darwin'
14-
command: 'set -o pipefail ; nix run --no-accept-flake-config -L .#packages.x86_64-darwin.buildkitePipeline 2>&1 | cat'
10+
command: 'nix </dev/null run --no-accept-flake-config -L .#packages.x86_64-darwin.buildkitePipeline'
1511
agents:
16-
queue: daedalus
12+
queue: lace
1713
system: x86_64-darwin
1814

1915
- label: 'daedalus-aarch64-darwin'
20-
command: 'set -o pipefail ; nix run --no-accept-flake-config -L .#packages.aarch64-darwin.buildkitePipeline 2>&1 | cat'
16+
command: 'nix </dev/null run --no-accept-flake-config -L .#packages.aarch64-darwin.buildkitePipeline'
2117
agents:
22-
queue: daedalus
18+
queue: lace
2319
system: aarch64-darwin
2420

2521
- label: 'daedalus-x86_64-linux'
26-
command: 'set -o pipefail ; nix run --no-accept-flake-config -L .#packages.x86_64-linux.buildkitePipeline 2>&1 | cat'
22+
command: 'nix </dev/null run --no-accept-flake-config -L .#packages.x86_64-linux.buildkitePipeline'
2723
agents:
24+
queue: lace
2825
system: x86_64-linux
2926

3027
- label: 'daedalus-x86_64-windows'
31-
command: 'set -o pipefail ; nix run --no-accept-flake-config -L .#packages.x86_64-windows.buildkitePipeline 2>&1 | cat'
28+
command: 'nix </dev/null run --no-accept-flake-config -L .#packages.x86_64-windows.buildkitePipeline'
3229
agents:
30+
queue: lace
3331
system: x86_64-linux

0 commit comments

Comments
 (0)