nixos/k3s: run tests only for linux platforms

All k3s packages are also built exclusively for linux platforms.
This commit is contained in:
Robert Rose
2026-05-05 11:20:24 +02:00
parent 7bd8adbbea
commit b586d27741
+5 -1
View File
@@ -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 { };