Skip to content

Commit

Permalink
libuv: disable tests (temporarily) on Darwin
Browse files Browse the repository at this point in the history
They're flaky, break Hydra builds regularly, and lots of stuff depends
transitively on libuv.
  • Loading branch information
copumpkin committed Mar 9, 2017
1 parent a0f3590 commit 15a1743
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/libraries/libuv/default.nix
Expand Up @@ -34,7 +34,10 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

doCheck = true;
# These should be turned back on, but see https://github.com/NixOS/nixpkgs/issues/23651
# For now the tests are just breaking large swaths of the nixpkgs binary cache for Darwin,
# and I'd rather have everything else work at all than have stronger assurance here.
doCheck = !stdenv.isDarwin;

meta = with lib; {
description = "A multi-platform support library with a focus on asynchronous I/O";
Expand Down

0 comments on commit 15a1743

Please sign in to comment.