Boost VM RAM
Bump VM RAM to 4096MB
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user