mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-19 09:36:47 +02:00
Poison the build on the test derivation
Make sure that we're not accidentally rebuilding Nix here as it's just wasteful and awful for CI times.
This commit is contained in:
parent
eb68454be6
commit
92e8e1b1bb
1 changed files with 5 additions and 1 deletions
|
@ -280,9 +280,13 @@
|
|||
enableParallelBuilding = true;
|
||||
|
||||
configureFlags = testConfigureFlags; # otherwise configure fails
|
||||
dontBuild = true;
|
||||
doInstallCheck = true;
|
||||
|
||||
buildPhase = ''
|
||||
# Remove the source files to make sure that we're not accidentally rebuilding Nix
|
||||
rm src/**/*.cc
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue