gitlab: fix VM tests (#472675)

This commit is contained in:
Pol Dellaiera
2025-12-20 11:37:24 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -643,7 +643,7 @@ in
gitdaemon = runTest ./gitdaemon.nix;
gitea = handleTest ./gitea.nix { giteaPackage = pkgs.gitea; };
github-runner = runTest ./github-runner.nix;
gitlab = import ./gitlab/default.nix {
gitlab = import ./gitlab {
inherit runTest;
};
gitolite = runTest ./gitolite.nix;
+2 -2
View File
@@ -12,7 +12,7 @@
{ pkgs, lib, ... }:
let
inherit (import ./ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey;
inherit (import ../ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey;
initialRootPassword = "notproduction";
rootProjectId = "2";
@@ -37,7 +37,7 @@ in
gitlab =
{ ... }:
{
imports = [ common/user-account.nix ];
imports = [ ../common/user-account.nix ];
environment.systemPackages = with pkgs; [ git ];