Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Updated circleci to add 8GB swap #38

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down