Some checks failed
deploy-infra / deploy (push) Successful in 2m13s
/ check-pre-commit (push) Failing after 14s
/ check-data-model (push) Successful in 32s
/ check-mastodon (push) Successful in 23s
/ check-peertube (push) Successful in 21s
/ check-panel (push) Successful in 1m31s
/ check-proxmox-basic (push) Successful in 36s
/ check-deployment-basic (push) Successful in 32s
/ check-deployment-cli (push) Successful in 45s
/ check-deployment-panel (push) Successful in 1m53s
/ check-deployment-model-ssh (push) Successful in 24s
/ check-deployment-model-nixops4 (push) Successful in 34s
/ check-resources (push) Successful in 4m12s
test deployments using data obtained through the data model in VMs. caveats: - SSH currently has a `run` abstraction that the nixops4 model still lacks - the deployed (trivial) configuration on activation has not facilitated new ssh connections (for subsequent) updates, i.e. a more sophisticated configuration would be needed for real-life usage. Reviewed-on: #505
20 lines
293 B
Nix
20 lines
293 B
Nix
{
|
|
runNixOSTest,
|
|
inputs,
|
|
sources,
|
|
}:
|
|
|
|
runNixOSTest {
|
|
imports = [
|
|
../common/nixosTest.nix
|
|
./nixosTest.nix
|
|
];
|
|
_module.args = { inherit inputs sources; };
|
|
inherit (import ./constants.nix)
|
|
targetMachines
|
|
pathToRoot
|
|
pathFromRoot
|
|
enableAcme
|
|
useFlake
|
|
;
|
|
}
|