Fix runners

This commit is contained in:
mauro 🤙
2024-08-07 09:49:24 +00:00
parent 537b20d2dc
commit 3f1bdfe50d
2 changed files with 14 additions and 13 deletions

View File

@@ -19,6 +19,13 @@ jobs:
name: Build Linux - ${{ matrix.generic == true && 'Generic' || 'Specific' }}
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
@@ -29,12 +36,6 @@ jobs:
submodules: recursive
token: ${{ secrets.DEPLOY_KEY }}
# Give the runner some swap space in an attempt to stop gkrust from crashing the build
- name: Set Swap Space
uses: pierotofy/set-swap-space@v1.0
with:
swap-size-gb: 6
- name: Setup git
run: |
git config --global user.email "mauro-balades@users.noreply.github.com"

View File

@@ -24,6 +24,13 @@ jobs:
generic: [true, false]
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false
- name: Install Node.js and pnpm
uses: actions/setup-node@v3
with:
@@ -34,13 +41,6 @@ jobs:
submodules: recursive
token: ${{ secrets.DEPLOY_KEY }}
# Give the runner some swap space in an attempt to stop gkrust from crashing the build
- name: Set Swap Space
uses: pierotofy/set-swap-space@v1.0
with:
swap-size-gb: 6
- name: Install pnpm
run: npm install -g pnpm