nixos/tests/systemd-boot: only run tests on x86_64-linux

They're all broken on aarch64-linux and makes it impossible
for me to test systemd bumps by building the passthru tests

Disable them on the platforms in question. We can fix them
later.
This commit is contained in:
Arian van Putten
2025-12-25 13:06:51 +01:00
parent 58f613d996
commit 19c82da75a
+6 -3
View File
@@ -158,7 +158,8 @@ in
}
);
basicXbootldr = runTest (
# TODO: Fix on aarch64-linux
basicXbootldr = runTestOn [ "x86_64-linux" ] (
{ lib, ... }:
{
name = "systemd-boot-xbootldr";
@@ -282,7 +283,8 @@ in
}
);
update = runTest (
# TODO: Fix on aarch64-linux
update = runTestOn [ "x86_64-linux" ] (
{ lib, ... }:
{
name = "systemd-boot-update";
@@ -457,7 +459,8 @@ in
}
);
entryFilenameXbootldr = runTest (
# TODO: Fix on aarch64-linux
entryFilenameXbootldr = runTestOn [ "x86_64-linux" ] (
{ lib, ... }:
{
name = "systemd-boot-entry-filename-xbootldr";