aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2021-10-06 14:34:25 +0200
committerGitHub <noreply@github.com>2021-10-06 14:34:25 +0200
commit987ca62cd50af83ac1b51e2f45ccd488cc561d5e (patch)
tree1910b4b29e29a2fc4e75bfff94af54c4ee7cce4b
parentce9823d9b7d2fc73ec2bce521450430c9bc413b6 (diff)
parent4d28cf836ac6328b900f023632c8995d000c64cd (diff)
Merge pull request #5340 from edolstra/disable-current-unstable-macos
Disable testing against nixUnstable on macOS
-rw-r--r--flake.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index d3486db4c..2a4149698 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;