Skip to content

Commit

Permalink
Fix failing tests on aarch64-darwin in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yannham committed Sep 16, 2024
1 parent 04d0a23 commit dafb2cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,10 @@
buildInputs = with pkgs; [
(nix-input.packages.${system}.default.overrideAttrs
# SEE: https://github.com/NixOS/nix/issues/9107
(_: lib.optionalAttrs (system == "x86_64-darwin") {
#
# In fact, some other tests fail on `aarch64-darwin` as well
# (remote-store). We disable tests on `aarch64-darwin` for now.
(_: lib.optionalAttrs (system == "x86_64-darwin" || system == "aarch64-darwin") {
doCheck = false;
})
)
Expand Down

0 comments on commit dafb2cd

Please sign in to comment.