From 59b583b46d7e092b1271cfa3ff8e0892b17579f3 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Wed, 15 Oct 2025 15:21:00 +0200 Subject: [PATCH] n-e-j: disable darwin ci it's a disaster. cf #1015 Change-Id: I4671c1ea0f1b6b2750b97cf3c42497460ef33259 --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 192e164b2..58a699a28 100644 --- a/flake.nix +++ b/flake.nix @@ -100,6 +100,7 @@ "x86_64-darwin" "aarch64-darwin" ]; + nonDarwinSystems = linuxSystems; systems = linuxSystems ++ darwinSystems; # If you add something here, please update the list in doc/manual/src/contributing/hacking.md. @@ -371,7 +372,10 @@ ; } // { - nix-eval-jobs = forAllSystems (system: self.packages.${system}.nix-eval-jobs.tests.nix-eval-jobs); + # the n-e-j test suite is unusably slow in darwin ci. disbled until anywho fixes this. + nix-eval-jobs = (lib.genAttrs nonDarwinSystems) ( + system: self.packages.${system}.nix-eval-jobs.tests.nix-eval-jobs + ); # This is x86_64-linux only, just because we have significantly # cheaper x86_64-linux compute in CI.