forked from DGNum/colmena
integration-tests: Only enable documentation build in apply test
Otherwise it takes too long :/
This commit is contained in:
parent
0a955d0a4c
commit
6d5b7d7e3e
2 changed files with 4 additions and 4 deletions
|
@ -79,6 +79,8 @@ in {
|
|||
|
||||
environment.systemPackages = [ testPkg ];
|
||||
|
||||
documentation.nixos.enable = lib.mkForce true;
|
||||
|
||||
system.activationScripts.colmena-test.text = ''
|
||||
echo "must appear during activation"
|
||||
'';
|
||||
|
|
|
@ -55,8 +55,6 @@ let
|
|||
];
|
||||
};
|
||||
|
||||
documentation.nixos.enable = lib.mkForce true;
|
||||
|
||||
services.openssh.enable = true;
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
sshKeys.snakeOilPublicKey
|
||||
|
@ -79,7 +77,7 @@ let
|
|||
targetConfig = { lib, ... }: {
|
||||
nix.binaryCaches = lib.mkForce [];
|
||||
|
||||
documentation.nixos.enable = lib.mkForce true;
|
||||
documentation.nixos.enable = lib.mkOverride 60 true;
|
||||
|
||||
services.openssh.enable = true;
|
||||
users.users.root.openssh.authorizedKeys.keys = [
|
||||
|
@ -105,7 +103,7 @@ let
|
|||
(modulesPath + "/testing/test-instrumentation.nix")
|
||||
];
|
||||
|
||||
documentation.nixos.enable = false;
|
||||
documentation.nixos.enable = lib.mkOverride 55 false;
|
||||
boot.loader.grub.enable = false;
|
||||
system.nixos.revision = lib.mkForce "constant-nixos-revision";
|
||||
|
||||
|
|
Loading…
Reference in a new issue