From b586d27741f345315e5e7d8d7be551202affdb68 Mon Sep 17 00:00:00 2001 From: Robert Rose Date: Fri, 1 May 2026 09:53:06 +0200 Subject: [PATCH] nixos/k3s: run tests only for linux platforms All k3s packages are also built exclusively for linux platforms. --- nixos/tests/all-tests.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index b276d07786bc..959dc92a4304 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -813,8 +813,12 @@ in jool = import ./jool.nix { inherit pkgs runTest; }; jotta-cli = runTest ./jotta-cli.nix; k3s = import ./rancher { - inherit pkgs runTest; + inherit pkgs; inherit (pkgs) lib; + runTest = runTestOn [ + "aarch64-linux" + "x86_64-linux" + ]; rancherDistro = "k3s"; }; kafka = handleTest ./kafka { };