summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nixos/tests/gitlab.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/nixos/tests/gitlab.nix b/nixos/tests/gitlab.nix
index a629bf749ca9..5c9aac469613 100644
--- a/nixos/tests/gitlab.nix
+++ b/nixos/tests/gitlab.nix
@@ -51,10 +51,11 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with lib; {
host = "localhost";
port = 143;
};
- pages = {
- enabled = true;
- host = "localhost";
- };
+ # https://github.com/NixOS/nixpkgs/issues/132295
+ # pages = {
+ # enabled = true;
+ # host = "localhost";
+ # };
};
secrets = {
secretFile = pkgs.writeText "secret" "Aig5zaic";
@@ -92,7 +93,8 @@ import ./make-test-python.nix ({ pkgs, lib, ...} : with lib; {
waitForServices = ''
gitlab.wait_for_unit("gitaly.service")
gitlab.wait_for_unit("gitlab-workhorse.service")
- gitlab.wait_for_unit("gitlab-pages.service")
+ # https://github.com/NixOS/nixpkgs/issues/132295
+ # gitlab.wait_for_unit("gitlab-pages.service")
gitlab.wait_for_unit("gitlab-mailroom.service")
gitlab.wait_for_unit("gitlab.service")
gitlab.wait_for_unit("gitlab-sidekiq.service")