Completely disable sandboxing for build service
Some checks failed
nix-bitcoin tests / build_test_drivers (push) Has been cancelled
nix-bitcoin tests / check_flake (push) Has been cancelled
nix-bitcoin tests / test_scenario (default) (push) Has been cancelled
nix-bitcoin tests / test_scenario (joinmarket-bitcoind-29) (push) Has been cancelled
nix-bitcoin tests / test_scenario (netns) (push) Has been cancelled
nix-bitcoin tests / test_scenario (netnsRegtest) (push) Has been cancelled

This commit is contained in:
Patrick Mulligan 2026-01-09 22:48:59 +01:00
parent a4da436061
commit 36a3343f44

View file

@ -319,6 +319,9 @@ in
PYTHON = "${pkgs.python3}/bin/python3"; PYTHON = "${pkgs.python3}/bin/python3";
# Ensure HOME is set for npm/pnpm cache # Ensure HOME is set for npm/pnpm cache
HOME = cfg.dataDir; HOME = cfg.dataDir;
# CRITICAL: pnpm fails without TTY unless CI=true is set
# See: https://github.com/pnpm/pnpm/issues/6434
CI = "true";
}; };
serviceConfig = { serviceConfig = {