Skip to content

Commit

Permalink
CI workaround for "no space left on device" error:
Browse files Browse the repository at this point in the history
The default size of /run/user/1001 is about 1.4G.
Boots needs more. I don't why Boots needs more
than this. Will investigate. This workarounds the
failed builds for now.

Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Apr 5, 2023
1 parent b73f6cb commit 3211b17
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ jobs:
with:
lfs: true

- name: Workaround for disk space issue
# fixes "write /run/user/1001/: no space left on device" error
run: sudo mount -o remount,size=3G /run/user/1001 || true

- name: Install nix
uses: cachix/install-nix-action@v18
with:
Expand Down

0 comments on commit 3211b17

Please sign in to comment.