tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
NixOS Integration tests: Re-enable for macOS
Jacek Galowicz
2 years ago
8d3a38e8
92323443
+2
-6
2 changed files
expand all
collapse all
unified
split
nixos
lib
testing
meta.nix
pkgs
build-support
trivial-builders
test
default.nix
+1
-1
nixos/lib/testing/meta.nix
···
36
36
};
37
37
platforms = lib.mkOption {
38
38
type = types.listOf types.raw;
39
39
-
default = lib.platforms.linux;
39
39
+
default = lib.platforms.linux ++ lib.platforms.darwin;
40
40
description = ''
41
41
Sets the [`meta.platforms`](https://nixos.org/manual/nixpkgs/stable/#var-meta-platforms) attribute on the [{option}`test`](#test-opt-test) derivation.
42
42
'';
+1
-5
pkgs/build-support/trivial-builders/test/default.nix
···
20
20
concat = callPackage ./concat-test.nix {};
21
21
linkFarm = callPackage ./link-farm.nix {};
22
22
overriding = callPackage ../test-overriding.nix {};
23
23
-
# VM test not supported beyond linux yet
24
24
-
references =
25
25
-
if stdenv.hostPlatform.isLinux
26
26
-
then references
27
27
-
else {};
23
23
+
inherit references;
28
24
writeCBin = callPackage ./writeCBin.nix {};
29
25
writeClosure-union = callPackage ./writeClosure-union.nix {
30
26
inherit (references) samples;