mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #137027 from Artturin/blackboxdarwintest
blackbox: only doCheck on x86_64-linux
This commit is contained in:
commit
894d652ed1
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ gnupg ];
|
||||
|
||||
doCheck = true;
|
||||
# https://github.com/NixOS/nixpkgs/issues/134445
|
||||
doCheck = !stdenv.isDarwin && stdenv.isx86_64;
|
||||
|
||||
checkInputs = [
|
||||
expect
|
||||
|
|
Loading…
Reference in a new issue