nixos/tests: don't explicitly set meta.platforms (#408626)
This commit is contained in:
@@ -5,13 +5,10 @@ let
|
||||
in
|
||||
{
|
||||
name = "bitbox-bridge";
|
||||
meta = {
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [
|
||||
izelnakri
|
||||
tensor5
|
||||
];
|
||||
};
|
||||
meta.maintainers = with lib.maintainers; [
|
||||
izelnakri
|
||||
tensor5
|
||||
];
|
||||
|
||||
nodes.machine = {
|
||||
services.bitbox-bridge = {
|
||||
|
||||
@@ -10,10 +10,7 @@
|
||||
{
|
||||
name = testName;
|
||||
|
||||
meta = {
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = lib.teams.cosmic.members;
|
||||
};
|
||||
meta.maintainers = lib.teams.cosmic.members;
|
||||
|
||||
nodes.machine = {
|
||||
imports = [ ./common/user-account.nix ];
|
||||
|
||||
@@ -651,14 +651,11 @@ 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
|
||||
[
|
||||
"x86_64-linux"
|
||||
"i686-linux"
|
||||
];
|
||||
platforms = lib.mkIf (!isEfi) [
|
||||
"x86_64-linux"
|
||||
"x86_64-darwin"
|
||||
"i686-linux"
|
||||
];
|
||||
};
|
||||
nodes =
|
||||
let
|
||||
|
||||
@@ -6,11 +6,6 @@
|
||||
phip1611
|
||||
programmerlexi
|
||||
];
|
||||
meta.platforms = [
|
||||
"aarch64-linux"
|
||||
"i686-linux"
|
||||
"x86_64-linux"
|
||||
];
|
||||
nodes.machine =
|
||||
{ ... }:
|
||||
{
|
||||
|
||||
@@ -6,11 +6,6 @@
|
||||
phip1611
|
||||
programmerlexi
|
||||
];
|
||||
meta.platforms = [
|
||||
"aarch64-linux"
|
||||
"i686-linux"
|
||||
"x86_64-linux"
|
||||
];
|
||||
nodes.machine =
|
||||
{ ... }:
|
||||
{
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
name = "lomiri-calendar-app-standalone";
|
||||
meta = {
|
||||
maintainers = lib.teams.lomiri.members;
|
||||
# This needs a Linux VM
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
meta.maintainers = lib.teams.lomiri.members;
|
||||
|
||||
nodes.machine =
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
@@ -8,11 +8,7 @@ let
|
||||
in
|
||||
{
|
||||
name = "lomiri-music-app-standalone";
|
||||
meta = {
|
||||
maintainers = lib.teams.lomiri.members;
|
||||
# This needs a Linux VM
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
meta.maintainers = lib.teams.lomiri.members;
|
||||
|
||||
nodes.machine =
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
name = "shadps4-openorbis-example";
|
||||
meta = {
|
||||
inherit (pkgs.shadps4.meta) maintainers;
|
||||
platforms = lib.intersectLists lib.platforms.linux pkgs.shadps4.meta.platforms;
|
||||
};
|
||||
|
||||
nodes.machine =
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
{ lib, pkgs, ... }:
|
||||
{
|
||||
name = "velocity";
|
||||
meta = {
|
||||
platforms = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
];
|
||||
maintainers = [ lib.maintainers.Tert0 ];
|
||||
};
|
||||
meta.maintainers = [ lib.maintainers.Tert0 ];
|
||||
|
||||
nodes.server =
|
||||
{ ... }:
|
||||
|
||||
@@ -8,8 +8,6 @@ in
|
||||
{
|
||||
name = "wstunnel";
|
||||
|
||||
meta.platforms = lib.platforms.linux;
|
||||
|
||||
nodes = {
|
||||
server = {
|
||||
virtualisation.vlans = [ 1 ];
|
||||
|
||||
Reference in New Issue
Block a user