hydraJobs.installTests.<s>.againstCurrent{Unstable -> Latest}

Nixpkgs has reshuffled its Nix versions.
This commit is contained in:
Robert Hensing 2024-06-03 16:35:45 +02:00
parent f01f65b615
commit 6067525162

View file

@ -170,10 +170,10 @@ in
pkgs.runCommand "install-tests"
{
againstSelf = testNixVersions pkgs pkgs.nix pkgs.pkgs.nix;
againstCurrentUnstable =
againstCurrentLatest =
# FIXME: temporarily disable this on macOS because of #3605.
if system == "x86_64-linux"
then testNixVersions pkgs pkgs.nix pkgs.nixUnstable
then testNixVersions pkgs pkgs.nix pkgs.nixVersions.latest
else null;
# Disabled because the latest stable version doesn't handle
# `NIX_DAEMON_SOCKET_PATH` which is required for the tests to work