0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/tests: don't explicitly set meta.platforms

This prevents the tests from running on Darwin for no real reason.
This commit is contained in:
Winter 2025-05-19 01:55:26 -04:00
parent 4b4e56e716
commit 2680e0beca
9 changed files with 8 additions and 41 deletions

View file

@ -5,13 +5,10 @@ let
in in
{ {
name = "bitbox-bridge"; name = "bitbox-bridge";
meta = { meta.maintainers = with lib.maintainers; [
platforms = lib.platforms.linux; izelnakri
maintainers = with lib.maintainers; [ tensor5
izelnakri ];
tensor5
];
};
nodes.machine = { nodes.machine = {
services.bitbox-bridge = { services.bitbox-bridge = {

View file

@ -10,10 +10,7 @@
{ {
name = testName; name = testName;
meta = { meta.maintainers = lib.teams.cosmic.members;
platforms = lib.platforms.linux;
maintainers = lib.teams.cosmic.members;
};
nodes.machine = { nodes.machine = {
imports = [ ./common/user-account.nix ]; imports = [ ./common/user-account.nix ];

View file

@ -6,11 +6,6 @@
phip1611 phip1611
programmerlexi programmerlexi
]; ];
meta.platforms = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
];
nodes.machine = nodes.machine =
{ ... }: { ... }:
{ {

View file

@ -6,11 +6,6 @@
phip1611 phip1611
programmerlexi programmerlexi
]; ];
meta.platforms = [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
];
nodes.machine = nodes.machine =
{ ... }: { ... }:
{ {

View file

@ -1,11 +1,7 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
{ {
name = "lomiri-calendar-app-standalone"; name = "lomiri-calendar-app-standalone";
meta = { meta.maintainers = lib.teams.lomiri.members;
maintainers = lib.teams.lomiri.members;
# This needs a Linux VM
platforms = lib.platforms.linux;
};
nodes.machine = nodes.machine =
{ config, pkgs, ... }: { config, pkgs, ... }:

View file

@ -8,11 +8,7 @@ let
in in
{ {
name = "lomiri-music-app-standalone"; name = "lomiri-music-app-standalone";
meta = { meta.maintainers = lib.teams.lomiri.members;
maintainers = lib.teams.lomiri.members;
# This needs a Linux VM
platforms = lib.platforms.linux;
};
nodes.machine = nodes.machine =
{ config, pkgs, ... }: { config, pkgs, ... }:

View file

@ -3,7 +3,6 @@
name = "shadps4-openorbis-example"; name = "shadps4-openorbis-example";
meta = { meta = {
inherit (pkgs.shadps4.meta) maintainers; inherit (pkgs.shadps4.meta) maintainers;
platforms = lib.intersectLists lib.platforms.linux pkgs.shadps4.meta.platforms;
}; };
nodes.machine = nodes.machine =

View file

@ -1,13 +1,7 @@
{ lib, pkgs, ... }: { lib, pkgs, ... }:
{ {
name = "velocity"; name = "velocity";
meta = { meta.maintainers = [ lib.maintainers.Tert0 ];
platforms = [
"x86_64-linux"
"aarch64-linux"
];
maintainers = [ lib.maintainers.Tert0 ];
};
nodes.server = nodes.server =
{ ... }: { ... }:

View file

@ -8,8 +8,6 @@ in
{ {
name = "wstunnel"; name = "wstunnel";
meta.platforms = lib.platforms.linux;
nodes = { nodes = {
server = { server = {
virtualisation.vlans = [ 1 ]; virtualisation.vlans = [ 1 ];