sourceHighlight: enable tests, disable parallelism in tests only
This commit is contained in:
parent
646e7aa079
commit
1123630e12
@ -30,7 +30,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
configureFlags = [ "--with-boost=${boost.out}" ];
|
||||
|
||||
enableParallelBuilding = false;
|
||||
doCheck = true;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# Upstream uses the same intermediate files in multiple tests, running
|
||||
# them in parallel by make will eventually break one or more tests.
|
||||
enableParallelChecking = false;
|
||||
|
||||
outputs = [ "out" "doc" "dev" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user