From c49fa018b33d62ac0c017ee1c0434e2f055afda8 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sun, 2 Mar 2025 16:30:11 -0500 Subject: [PATCH] ci: update build script --- ci/run_builds.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/run_builds.sh b/ci/run_builds.sh index 691c5c9..2ca03b6 100755 --- a/ci/run_builds.sh +++ b/ci/run_builds.sh @@ -15,7 +15,9 @@ system="$(nix eval --impure --raw --expr 'builtins.currentSystem')" run_builds () { for i in "$@" ; do - nix-fast-build --eval-workers 1 --no-nom --skip-cache --attic-cache main -f "$i" + # nix-fast-build --eval-workers 1 --no-nom --skip-cache --attic-cache main -f "$i" + # sure let's waste bandwidth becuase nix-fast-build uses an ungodly amount of memory for some reason + nix build --no-link "$i" done }