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,11 +133,16 @@
(attrNames (readDir ./${directory})))); (attrNames (readDir ./${directory}))));
attributeSet = attributeSet =
if directory == "packages" || directory == "tests" if directory == "packages"
then { then {
x86_64-linux = attributeValue; x86_64-linux = attributeValue;
aarch64-linux = aarch64Packages; aarch64-linux = aarch64Packages;
} }
else
if directory == "tests"
then {
x86_64-linux = attributeValue;
}
else attributeValue; else attributeValue;
in in
(attributeSet); (attributeSet);