1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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

This commit is contained in:
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;
};
};