forked from mirrors/nixpkgs
picoc: disable broken tests on i686
This commit is contained in:
parent
61051ee836
commit
006a2f553e
|
@ -39,7 +39,9 @@ stdenv.mkDerivation {
|
|||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
doCheck = true;
|
||||
# Tests are currently broken on i686 see
|
||||
# http://hydra.nixos.org/build/24003763/nixlog/1
|
||||
doCheck = if stdenv.isi686 then false else true;
|
||||
checkTarget = "test";
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue