forked from Fediversity/Fediversity
Unflakify deployment tests (#449)
This PR builds on top of #447 and #448. Since these might be rejected, there will be some changes needed for this PR as well. Let's see how the discussions go in #447.
In the meantime, @fricklerhandwerk, would you mind (in)validating the core idea of this PR? You only need to look at 7cf43c4041
, really.
Reviewed-on: Fediversity/Fediversity#449
Reviewed-by: kiara Grouwstra <kiara@procolix.eu>
Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io>
Co-authored-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com>
Co-committed-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com>
This commit is contained in:
parent
1d40dcfc0e
commit
de38611572
17 changed files with 338 additions and 247 deletions
8
deployment/check/basic/constants.nix
Normal file
8
deployment/check/basic/constants.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"hello"
|
||||||
|
"cowsay"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
}
|
14
deployment/check/basic/default.nix
Normal file
14
deployment/check/basic/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix) targetMachines pathToRoot pathFromRoot;
|
||||||
|
}
|
36
deployment/check/basic/deployment.nix
Normal file
36
deployment/check/basic/deployment.nix
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
providers,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (import ./constants.nix) targetMachines pathToRoot pathFromRoot;
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
providers = {
|
||||||
|
inherit (inputs.nixops4.modules.nixops4Provider) local;
|
||||||
|
};
|
||||||
|
|
||||||
|
resources = lib.genAttrs targetMachines (nodeName: {
|
||||||
|
type = providers.local.exec;
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4-nixos.modules.nixops4Resource.nixos
|
||||||
|
../common/targetResource.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
|
||||||
|
inherit nodeName pathToRoot pathFromRoot;
|
||||||
|
|
||||||
|
nixos.module =
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ pkgs.${nodeName} ];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
|
@ -1,57 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (lib) genAttrs;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"hello"
|
|
||||||
"cowsay"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-basic = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit targetMachines pathToRoot pathFromRoot;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments.check-deployment-basic =
|
|
||||||
{ providers, ... }:
|
|
||||||
{
|
|
||||||
providers = {
|
|
||||||
inherit (inputs.nixops4.modules.nixops4Provider) local;
|
|
||||||
};
|
|
||||||
resources = genAttrs targetMachines (nodeName: {
|
|
||||||
type = providers.local.exec;
|
|
||||||
imports = [
|
|
||||||
inputs.nixops4-nixos.modules.nixops4Resource.nixos
|
|
||||||
../common/targetResource.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit nodeName pathToRoot pathFromRoot;
|
|
||||||
nixos.module =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = [ pkgs.${nodeName} ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
22
deployment/check/basic/flake-under-test.nix
Normal file
22
deployment/check/basic/flake-under-test.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{ inputs, sources, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments.check-deployment-basic = {
|
||||||
|
imports = [ ./deployment/check/basic/deployment.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
11
deployment/check/cli/constants.nix
Normal file
11
deployment/check/cli/constants.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"garage"
|
||||||
|
"mastodon"
|
||||||
|
"peertube"
|
||||||
|
"pixelfed"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
enableAcme = true;
|
||||||
|
}
|
19
deployment/check/cli/default.nix
Normal file
19
deployment/check/cli/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
}
|
59
deployment/check/cli/deployments.nix
Normal file
59
deployment/check/cli/deployments.nix
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (builtins) fromJSON readFile listToAttrs;
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
|
||||||
|
makeTargetResource = nodeName: {
|
||||||
|
imports = [ ../common/targetResource.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit
|
||||||
|
nodeName
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
## The deployment function - what we are here to test!
|
||||||
|
##
|
||||||
|
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
||||||
|
## function calls.
|
||||||
|
makeTestDeployment =
|
||||||
|
args:
|
||||||
|
(import ../..)
|
||||||
|
{
|
||||||
|
inherit lib;
|
||||||
|
inherit (inputs) nixops4 nixops4-nixos;
|
||||||
|
fediversity = import ../../../services/fediversity;
|
||||||
|
}
|
||||||
|
(listToAttrs (
|
||||||
|
map (nodeName: {
|
||||||
|
name = "${nodeName}ConfigurationResource";
|
||||||
|
value = makeTargetResource nodeName;
|
||||||
|
}) targetMachines
|
||||||
|
))
|
||||||
|
(fromJSON (readFile ../../configuration.sample.json) // args);
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
check-deployment-cli-nothing = makeTestDeployment { };
|
||||||
|
|
||||||
|
check-deployment-cli-mastodon-pixelfed = makeTestDeployment {
|
||||||
|
mastodon.enable = true;
|
||||||
|
pixelfed.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
check-deployment-cli-peertube = makeTestDeployment {
|
||||||
|
peertube.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (builtins) fromJSON readFile listToAttrs;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"garage"
|
|
||||||
"mastodon"
|
|
||||||
"peertube"
|
|
||||||
"pixelfed"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
enableAcme = true;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-cli = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
targetMachines
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments =
|
|
||||||
let
|
|
||||||
makeTargetResource = nodeName: {
|
|
||||||
imports = [ ../common/targetResource.nix ];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
nodeName
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
|
|
||||||
## The deployment function - what we are here to test!
|
|
||||||
##
|
|
||||||
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
|
||||||
## function calls.
|
|
||||||
makeTestDeployment =
|
|
||||||
args:
|
|
||||||
(import ../..)
|
|
||||||
{
|
|
||||||
inherit lib;
|
|
||||||
inherit (inputs) nixops4 nixops4-nixos;
|
|
||||||
fediversity = import ../../../services/fediversity;
|
|
||||||
}
|
|
||||||
(listToAttrs (
|
|
||||||
map (nodeName: {
|
|
||||||
name = "${nodeName}ConfigurationResource";
|
|
||||||
value = makeTargetResource nodeName;
|
|
||||||
}) targetMachines
|
|
||||||
))
|
|
||||||
(fromJSON (readFile ../../configuration.sample.json) // args);
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
check-deployment-cli-nothing = makeTestDeployment { };
|
|
||||||
|
|
||||||
check-deployment-cli-mastodon-pixelfed = makeTestDeployment {
|
|
||||||
mastodon.enable = true;
|
|
||||||
pixelfed.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
check-deployment-cli-peertube = makeTestDeployment {
|
|
||||||
peertube.enable = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
26
deployment/check/cli/flake-under-test.nix
Normal file
26
deployment/check/cli/flake-under-test.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments = import ./deployment/check/cli/deployments.nix {
|
||||||
|
inherit inputs sources lib;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -134,7 +134,13 @@ in
|
||||||
|
|
||||||
## NOTE: This is super slow. It could probably be optimised in Nix, for
|
## NOTE: This is super slow. It could probably be optimised in Nix, for
|
||||||
## instance by allowing to grab things directly from the host's store.
|
## instance by allowing to grab things directly from the host's store.
|
||||||
with subtest("Override the lock"):
|
##
|
||||||
|
## NOTE: We use the repository as-is (cf `src` above), overriding only
|
||||||
|
## `flake.nix` by our `flake-under-test.nix`. We also override the flake
|
||||||
|
## lock file to use locally available inputs, as we cannot download them.
|
||||||
|
##
|
||||||
|
with subtest("Override the flake and its lock"):
|
||||||
|
deployer.succeed("cp ${config.pathFromRoot}/flake-under-test.nix flake.nix")
|
||||||
deployer.succeed("""
|
deployer.succeed("""
|
||||||
nix flake lock --extra-experimental-features 'flakes nix-command' \
|
nix flake lock --extra-experimental-features 'flakes nix-command' \
|
||||||
--offline -v \
|
--offline -v \
|
||||||
|
|
11
deployment/check/panel/constants.nix
Normal file
11
deployment/check/panel/constants.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
targetMachines = [
|
||||||
|
"garage"
|
||||||
|
"mastodon"
|
||||||
|
"peertube"
|
||||||
|
"pixelfed"
|
||||||
|
];
|
||||||
|
pathToRoot = ../../..;
|
||||||
|
pathFromRoot = ./.;
|
||||||
|
enableAcme = true;
|
||||||
|
}
|
19
deployment/check/panel/default.nix
Normal file
19
deployment/check/panel/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
runNixOSTest,
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
}:
|
||||||
|
|
||||||
|
runNixOSTest {
|
||||||
|
imports = [
|
||||||
|
../common/nixosTest.nix
|
||||||
|
./nixosTest.nix
|
||||||
|
];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
}
|
58
deployment/check/panel/deployment.nix
Normal file
58
deployment/check/panel/deployment.nix
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (builtins) fromJSON listToAttrs;
|
||||||
|
inherit (import ./constants.nix)
|
||||||
|
targetMachines
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
|
||||||
|
makeTargetResource = nodeName: {
|
||||||
|
imports = [ ../common/targetResource.nix ];
|
||||||
|
_module.args = { inherit inputs sources; };
|
||||||
|
inherit
|
||||||
|
nodeName
|
||||||
|
pathToRoot
|
||||||
|
pathFromRoot
|
||||||
|
enableAcme
|
||||||
|
;
|
||||||
|
};
|
||||||
|
|
||||||
|
## The deployment function - what we are here to test!
|
||||||
|
##
|
||||||
|
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
||||||
|
## function calls.
|
||||||
|
makeTestDeployment =
|
||||||
|
args:
|
||||||
|
(import ../..)
|
||||||
|
{
|
||||||
|
inherit lib;
|
||||||
|
inherit (inputs) nixops4 nixops4-nixos;
|
||||||
|
fediversity = import ../../../services/fediversity;
|
||||||
|
}
|
||||||
|
(listToAttrs (
|
||||||
|
map (nodeName: {
|
||||||
|
name = "${nodeName}ConfigurationResource";
|
||||||
|
value = makeTargetResource nodeName;
|
||||||
|
}) targetMachines
|
||||||
|
))
|
||||||
|
args;
|
||||||
|
|
||||||
|
in
|
||||||
|
makeTestDeployment (
|
||||||
|
fromJSON (
|
||||||
|
let
|
||||||
|
env = builtins.getEnv "DEPLOYMENT";
|
||||||
|
in
|
||||||
|
if env == "" then
|
||||||
|
throw "The DEPLOYMENT environment needs to be set. You do not want to use this deployment unless in the `deployment-panel` NixOS test."
|
||||||
|
else
|
||||||
|
env
|
||||||
|
)
|
||||||
|
)
|
|
@ -1,94 +0,0 @@
|
||||||
{
|
|
||||||
self,
|
|
||||||
inputs,
|
|
||||||
lib,
|
|
||||||
sources,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
|
||||||
inherit (builtins)
|
|
||||||
fromJSON
|
|
||||||
listToAttrs
|
|
||||||
;
|
|
||||||
|
|
||||||
targetMachines = [
|
|
||||||
"garage"
|
|
||||||
"mastodon"
|
|
||||||
"peertube"
|
|
||||||
"pixelfed"
|
|
||||||
];
|
|
||||||
pathToRoot = /. + (builtins.unsafeDiscardStringContext self);
|
|
||||||
pathFromRoot = ./.;
|
|
||||||
enableAcme = true;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
_class = "flake";
|
|
||||||
|
|
||||||
perSystem =
|
|
||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
checks.deployment-panel = pkgs.testers.runNixOSTest {
|
|
||||||
imports = [
|
|
||||||
../common/nixosTest.nix
|
|
||||||
./nixosTest.nix
|
|
||||||
];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
targetMachines
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
nixops4Deployments =
|
|
||||||
let
|
|
||||||
makeTargetResource = nodeName: {
|
|
||||||
imports = [ ../common/targetResource.nix ];
|
|
||||||
_module.args = { inherit inputs sources; };
|
|
||||||
inherit
|
|
||||||
nodeName
|
|
||||||
pathToRoot
|
|
||||||
pathFromRoot
|
|
||||||
enableAcme
|
|
||||||
;
|
|
||||||
};
|
|
||||||
|
|
||||||
## The deployment function - what we are here to test!
|
|
||||||
##
|
|
||||||
## TODO: Modularise `deployment/default.nix` to get rid of the nested
|
|
||||||
## function calls.
|
|
||||||
makeTestDeployment =
|
|
||||||
args:
|
|
||||||
(import ../..)
|
|
||||||
{
|
|
||||||
inherit lib;
|
|
||||||
inherit (inputs) nixops4 nixops4-nixos;
|
|
||||||
fediversity = import ../../../services/fediversity;
|
|
||||||
}
|
|
||||||
(listToAttrs (
|
|
||||||
map (nodeName: {
|
|
||||||
name = "${nodeName}ConfigurationResource";
|
|
||||||
value = makeTargetResource nodeName;
|
|
||||||
}) targetMachines
|
|
||||||
))
|
|
||||||
args;
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
check-deployment-panel = makeTestDeployment (
|
|
||||||
fromJSON (
|
|
||||||
let
|
|
||||||
env = builtins.getEnv "DEPLOYMENT";
|
|
||||||
in
|
|
||||||
if env == "" then
|
|
||||||
throw "The DEPLOYMENT environment needs to be set. You do not want to use this deployment unless in the `deployment-panel` NixOS test."
|
|
||||||
else
|
|
||||||
env
|
|
||||||
)
|
|
||||||
);
|
|
||||||
};
|
|
||||||
}
|
|
26
deployment/check/panel/flake-under-test.nix
Normal file
26
deployment/check/panel/flake-under-test.nix
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
inputs = {
|
||||||
|
nixops4.follows = "nixops4-nixos/nixops4";
|
||||||
|
nixops4-nixos.url = "github:nixops4/nixops4-nixos";
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs =
|
||||||
|
inputs:
|
||||||
|
import ./mkFlake.nix inputs (
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
sources,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
inputs.nixops4.modules.flake.default
|
||||||
|
];
|
||||||
|
|
||||||
|
nixops4Deployments.check-deployment-panel = import ./deployment/check/panel/deployment.nix {
|
||||||
|
inherit inputs sources lib;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,9 +1,26 @@
|
||||||
|
{ inputs, sources, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
_class = "flake";
|
_class = "flake";
|
||||||
|
|
||||||
imports = [
|
perSystem =
|
||||||
./check/basic/flake-part.nix
|
{ pkgs, ... }:
|
||||||
./check/cli/flake-part.nix
|
{
|
||||||
./check/panel/flake-part.nix
|
checks = {
|
||||||
];
|
deployment-basic = import ./check/basic {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
|
||||||
|
deployment-cli = import ./check/cli {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
|
||||||
|
deployment-panel = import ./check/panel {
|
||||||
|
inherit (pkgs.testers) runNixOSTest;
|
||||||
|
inherit inputs sources;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue