Commit f3db57ed authored by Winter's avatar Winter
Browse files

nixos/tests/installer: include x86_64-darwin in platforms for uefi tests

Also makes it so that we only set `meta.platforms` in cases where we need
to restrict it; otherwise, we go with the default.
parent 2680e0be
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -651,12 +651,9 @@ let
        # put global maintainers here, individuals go into makeInstallerTest fkt call
        maintainers = (meta.maintainers or [ ]);
        # non-EFI tests can only run on x86
        platforms =
          if isEfi then
            platforms.linux
          else
            [
        platforms = lib.mkIf (!isEfi) [
          "x86_64-linux"
          "x86_64-darwin"
          "i686-linux"
        ];
      };