Skip to content

Commit 7c8c47b

Browse files
committed
Don't run the tests on Darwin
It's not an ELF platform. http://hydra.nixos.org/build/4285486
1 parent c330f99 commit 7c8c47b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let
3939
releaseTools.nixBuild {
4040
name = "patchelf";
4141
src = tarball;
42-
doCheck = system != "i686-cygwin" && system != "i686-solaris";
42+
doCheck = !stdenv.isDarwin && system != "i686-cygwin" && system != "i686-solaris";
4343
});
4444

4545

0 commit comments

Comments
 (0)