flake: Only run tests with x86_64-linux

Should fix an issue where aarch64 was failing.
This commit is contained in:
Donovan Glover 2024-06-20 16:15:15 -04:00
parent 6b404306bf
commit 707a7e40b6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -133,12 +133,17 @@
(attrNames (readDir ./${directory}))));
attributeSet =
if directory == "packages" || directory == "tests"
if directory == "packages"
then {
x86_64-linux = attributeValue;
aarch64-linux = aarch64Packages;
}
else attributeValue;
else
if directory == "tests"
then {
x86_64-linux = attributeValue;
}
else attributeValue;
in
(attributeSet);
})