From d0ca6190d92d4761361c78fdfbb9ca3793ccd7bc Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Sun, 7 Dec 2025 01:47:32 +0000 Subject: [PATCH] tests: restrict generated tests to one platform Buildbot cannot handle building our full test-suite across all platforms. --- tests/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/default.nix b/tests/default.nix index bf730078..57fe5b32 100644 --- a/tests/default.nix +++ b/tests/default.nix @@ -64,4 +64,4 @@ lib.optionalAttrs buildForThisSystem { // callTests ./platforms { } # Tests generated from ./test-sources # Grouped as a number of link-farms in the form { test-1, test-2, ... test-N } -// callTests ./main.nix { } +// lib.optionalAttrs buildForThisSystem (callTests ./main.nix { })