From 33864698bfbe0ae7f2e0a48297e1989776b0d16a Mon Sep 17 00:00:00 2001 From: Marcel Wagner Date: Tue, 4 Aug 2020 20:41:06 +0200 Subject: [PATCH] Updated circleci to add 8GB swap Signed-off-by: Marcel Wagner --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 881eff1..43a954f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,6 +30,11 @@ commands: command: | cd platform-launcher/util && \ bash setup-ubuntu18.04.sh + # create 8GB swap + sudo dd if=/dev/zero of=/swapfile bs=1M count=8000 + sudo mkswap /swapfile + sudo swapon /swapfile + checkout-e2e: description: "Checkout E2E test" parameters: