Boost VM RAM

Bump VM RAM to 4096MB
This commit is contained in:
Greg Hellings
2022-06-05 15:51:36 -05:00
committed by GitHub
parent a552637428
commit 288b91a797
2 changed files with 9 additions and 1 deletions
@@ -14,6 +14,7 @@ runs:
using: composite using: composite
steps: steps:
- shell: bash - shell: bash
if: runner.os == 'Linux'
run: | run: |
set -exo pipefail set -exo pipefail
sudo apt-get update sudo apt-get update
@@ -26,3 +27,10 @@ runs:
curl -L -o pup.zip "https://github.com/ericchiang/pup/releases/download/${{ inputs.pup_version }}/pup_${{ inputs.pup_version }}_linux_amd64.zip" curl -L -o pup.zip "https://github.com/ericchiang/pup/releases/download/${{ inputs.pup_version }}/pup_${{ inputs.pup_version }}_linux_amd64.zip"
sudo unzip pup.zip -d /usr/local/bin sudo unzip pup.zip -d /usr/local/bin
sudo chmod +x /usr/local/bin/pup sudo chmod +x /usr/local/bin/pup
- shell: bash
if: runner.os == 'macOS'
run: |
set -exo pipefail
brew install qemu
brew install pup
# Packer is already installed
+1 -1
View File
@@ -55,7 +55,7 @@ locals {
}) })
cpus = 2 cpus = 2
memory = 2048 memory = 4096
disk_size = 10 disk_size = 10
ssh = { ssh = {
username = "vagrant" username = "vagrant"