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.
(cherry picked from commit 15a1743)
  • Loading branch information
copumpkin authored and rbvermaa committed Mar 29, 2017
1 parent f79be2c commit e386049
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 e386049

Please sign in to comment.