summary refs log tree commit diff
path: root/nixos/tests/gocd-server.nix
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-08-10 16:21:35 -0400
committerGraham Christensen <graham@grahamc.com>2016-08-10 16:21:35 -0400
commit5d2980aa8ed04e45cb43a8b34375bb44157c214d (patch)
tree2c2f914825ee88516ae15a24cb070098e635494f /nixos/tests/gocd-server.nix
parentd969f3fa5110b458bbfe5d12774024a6329a6580 (diff)
downloadnixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar.gz
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar.bz2
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar.lz
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar.xz
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.tar.zst
nixpkgs-5d2980aa8ed04e45cb43a8b34375bb44157c214d.zip
gocd-agent / gocd-server: Reduce test memory requirements so Hydra builds
Diffstat (limited to 'nixos/tests/gocd-server.nix')
-rw-r--r--nixos/tests/gocd-server.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/tests/gocd-server.nix b/nixos/tests/gocd-server.nix
index 6ec5bfb4dbb..b473d4ad61c 100644
--- a/nixos/tests/gocd-server.nix
+++ b/nixos/tests/gocd-server.nix
@@ -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;
     };
 };