libtiff: avoid parallel checking (partially)
It causes issues apparently, so saving something like 10 seconds isn't worth that hassle. 3/3 failures on Hydra: https://hydra.nixos.org/build/274030385#tabs-buildsteps
This commit is contained in:
parent
b42890bf68
commit
9f92114fc8
@ -83,6 +83,9 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
# Avoid flakiness like https://gitlab.com/libtiff/libtiff/-/commit/94f6f7315b1
|
||||
# - except that we have many x86_64-linux binaries depending on this already
|
||||
enableParallelChecking = stdenv.system == "x86_64-linux";
|
||||
|
||||
passthru = {
|
||||
tests = {
|
||||
|
Loading…
Reference in New Issue
Block a user