diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-10-06 14:34:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 14:34:25 +0200 |
commit | 987ca62cd50af83ac1b51e2f45ccd488cc561d5e (patch) | |
tree | 1910b4b29e29a2fc4e75bfff94af54c4ee7cce4b | |
parent | ce9823d9b7d2fc73ec2bce521450430c9bc413b6 (diff) | |
parent | 4d28cf836ac6328b900f023632c8995d000c64cd (diff) |
Merge pull request #5340 from edolstra/disable-current-unstable-macos
Disable testing against nixUnstable on macOS
-rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -491,7 +491,11 @@ let pkgs = nixpkgsFor.${system}; in pkgs.runCommand "install-tests" { againstSelf = testNixVersions pkgs pkgs.nix pkgs.pkgs.nix; - againstCurrentUnstable = testNixVersions pkgs pkgs.nix pkgs.nixUnstable; + againstCurrentUnstable = + # FIXME: temporarily disable this on macOS because of #3605. + if system == "x86_64-linux" + then testNixVersions pkgs pkgs.nix pkgs.nixUnstable + else null; # Disabled because the latest stable version doesn't handle # `NIX_DAEMON_SOCKET_PATH` which is required for the tests to work # againstLatestStable = testNixVersions pkgs pkgs.nix pkgs.nixStable; |