Skip to content

Commit

Permalink
libtiff: avoid parallel checking (partially)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
vcunat committed Sep 27, 2024
1 parent b42890b commit 9f92114
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/by-name/li/libtiff/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 9f92114

Please sign in to comment.