Skip to content

Commit

Permalink
gitlab: run test with 4096 bits if on 64bit, else the the maximum for…
Browse files Browse the repository at this point in the history
… 32bit
  • Loading branch information
flokli committed Dec 16, 2018
1 parent 0a87bde commit c788367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/tests/gitlab.nix
Expand Up @@ -8,7 +8,7 @@ import ./make-test.nix ({ pkgs, lib, ...} : with lib; {

nodes = {
gitlab = { ... }: {
virtualisation.memorySize = 2047;
virtualisation.memorySize = if pkgs.stdenv.is64bit then 4096 else 2047;
systemd.services.gitlab.serviceConfig.Restart = mkForce "no";
systemd.services.gitlab-workhorse.serviceConfig.Restart = mkForce "no";
systemd.services.gitaly.serviceConfig.Restart = mkForce "no";
Expand Down

0 comments on commit c788367

Please sign in to comment.