summaryrefslogtreecommitdiffstats
path: root/release.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2012-03-12 09:29:37 (GMT)
committerEelco Dolstra <e.dolstra@tudelft.nl>2012-03-12 09:29:37 (GMT)
commit67c5d696b2cd92bec1c26429bc7132f37f811199 (patch)
treeb460a4cf3f2bf5f46134b199aeac3e38e358a955 /release.nix
parentb0e6fb12e2577876aa93d4e428662c2c2161c575 (diff)
downloadpatchelf-67c5d696b2cd92bec1c26429bc7132f37f811199.zip
patchelf-67c5d696b2cd92bec1c26429bc7132f37f811199.tar.gz
patchelf-67c5d696b2cd92bec1c26429bc7132f37f811199.tar.bz2
Disable tests on Solaris
The Solaris linker doesn't have the --enable/disable-dtags flag in the linker required by the tests. http://hydra.nixos.org/build/2230397
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 63b20db..fc621a6 100644
--- a/release.nix
+++ b/release.nix
@@ -40,7 +40,7 @@ let
releaseTools.nixBuild {
name = "patchelf";
src = jobs.tarball;
- doCheck = system != "i686-darwin" && system != "i686-cygwin";
+ doCheck = system != "i686-darwin" && system != "i686-cygwin" && system != "i686-solaris";
};