mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
picoc: disable broken tests on i686
This commit is contained in:
parent
61051ee836
commit
006a2f553e
1 changed files with 3 additions and 1 deletions
|
@ -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