59f7481411
Unforeseen problem: `buildkite-agent` runs its builds in a separate directory, so if I want the `nix-build` command to build the newly checked out code, I need to set <briefcase> to the CWD.
7 lines
161 B
Bash
7 lines
161 B
Bash
set -euo pipefail
|
|
|
|
nix-build /home/wpcarro/nixpkgs/nixos \
|
|
-I briefcase="$(pwd)" \
|
|
-I nixos-config=nixos/socrates/default.nix \
|
|
-A system \
|
|
--show-trace
|