From 48c819b4224e3d17d6742da498a5541a3bbe4182 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Sun, 19 May 2019 11:33:10 -0700 Subject: [PATCH] Limit memory available in integration tests This helps us catch times where our minimum recommended VM size (512MB?) is too little for TLJH to install or run. Ref #257 --- .circleci/integration-test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/integration-test.py b/.circleci/integration-test.py index 18dbeeb..465d659 100755 --- a/.circleci/integration-test.py +++ b/.circleci/integration-test.py @@ -29,6 +29,7 @@ def run_systemd_image(image_name, container_name): '--mount', 'type=bind,source=/sys/fs/cgroup,target=/sys/fs/cgroup', '--detach', '--name', container_name, + '--memory', '512M', # This is the minimum VM size we support image_name ])