gocd-agent / gocd-server: Reduce test memory requirements so Hydra builds

release-18.03-flake
Graham Christensen 2016-08-10 16:21:35 -04:00
parent d969f3fa51
commit 5d2980aa8e
No known key found for this signature in database
GPG Key ID: FE918C3A98C1030F
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ import ./make-test.nix ({ pkgs, ...} : {
gocd_agent =
{ config, pkgs, ... }:
{
virtualisation.memorySize = 2048;
virtualisation.memorySize = 2046;
services.gocd-agent = {
enable = true;
};

View File

@ -2,7 +2,7 @@
# 1. GoCD server starts
# 2. GoCD server responds
import ./make-test.nix ({ pkgs, ...} :
import ./make-test.nix ({ pkgs, ...} :
{
name = "gocd-server";
@ -13,8 +13,8 @@ import ./make-test.nix ({ pkgs, ...} :
nodes = {
gocd_server =
{ config, pkgs, ... }:
{
virtualisation.memorySize = 2048;
{
virtualisation.memorySize = 2046;
services.gocd-server.enable = true;
};
};