Skip to content

Commit

Permalink
Disable pylddwrap tests in non-x86 systems
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Nov 1, 2023
1 parent e5d8dfd commit 69e041f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions nix-alien.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ lib
, stdenv
, fzf
, nix-filter
, nix-index
Expand All @@ -21,6 +22,11 @@ let
# no actual advantage here
doInstallCheck = false;
});
pylddwrap = prev.pylddwrap.overrideAttrs (oldAttrs: {
# Fails to build in GitHub Actions, but works once it is build
# in a proper aarch64 system
doInstallCheck = stdenv.hostPlatform.isx86;
});
};
};
in
Expand Down

0 comments on commit 69e041f

Please sign in to comment.