From dafb2cdbdce10ac481846b8d5cd594a1d46bd126 Mon Sep 17 00:00:00 2001 From: Yann Hamdaoui Date: Mon, 16 Sep 2024 18:15:01 +0200 Subject: [PATCH] Fix failing tests on aarch64-darwin in CI --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 384ecd06b..8581a62bc 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }) )