Skip to content

Commit

Permalink
increase swap
Browse files Browse the repository at this point in the history
  • Loading branch information
joepetrowski committed Apr 15, 2024
1 parent fd0247e commit 4323354
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Increase swap
run: |
sudo swapoff -a
sudo fallocate -l 16G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit 4323354

Please sign in to comment.