Skip to content

Commit

Permalink
llvm5: disable tests on cross compilers
Browse files Browse the repository at this point in the history
This appears to be broken currently.

https://hydra.nixos.org/build/77597880

/cc @Ericson2314
  • Loading branch information
matthewbauer committed Aug 1, 2018
1 parent 3183e9e commit c7d77c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/development/compilers/llvm/5/llvm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ in stdenv.mkDerivation (rec {
ln -s $lib/lib/libLLVM.dylib $lib/lib/libLLVM-${release_version}.dylib
'';

doCheck = stdenv.isLinux && (!stdenv.isi686);
doCheck = stdenv.isLinux && (!stdenv.isi686)
&& (stdenv.hostPlatform == stdenv.targetPlatform);

checkTarget = "check-all";

Expand Down

0 comments on commit c7d77c9

Please sign in to comment.