mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
20 lines
437 B
Nix
20 lines
437 B
Nix
|
# This test runs gitlab and checks if it works
|
||
|
|
||
|
import ./make-test.nix {
|
||
|
name = "gitlab";
|
||
|
|
||
|
nodes = {
|
||
|
gitlab = { config, pkgs, ... }: {
|
||
|
virtualisation.memorySize = 768;
|
||
|
services.gitlab.enable = true;
|
||
|
services.gitlab.databasePassword = "gitlab";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
$gitlab->start();
|
||
|
$gitlab->waitForUnit("gitlab.service");
|
||
|
$gitlab->waitUntilSucceeds("curl http://localhost:8080");
|
||
|
'';
|
||
|
}
|