2
0
Fork 0

Generate SOTEST archives for base-hw

This commit is contained in:
Emery Hemingway 2020-02-19 14:27:24 +01:00
parent 5de779c85d
commit a8f2b9e864
1 changed files with 6 additions and 1 deletions

View File

@ -42,10 +42,15 @@ let
value = test;
}) (builtins.attrValues tests);
hw-sotest = map ({ name, value }: {
name = name + "-sotest";
value = value.sotest;
}) (testsToList hw);
nova-sotest = map ({ name, value }: {
name = name + "-sotest";
value = value.sotest;
}) (testsToList nova);
in with builtins;
listToAttrs ((concatLists (map (testsToList) [ linux nova hw ])) ++ nova-sotest)
listToAttrs ((concatLists (map (testsToList) [ linux nova hw ])) ++ hw-sotest ++ nova-sotest)