-
Notifications
You must be signed in to change notification settings - Fork 249
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #341 from eqlabs/adjust_swap
ci: try adjust swap more
- Loading branch information
Showing
1 changed file
with
3 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,18 +12,16 @@ jobs: | |
steps: | ||
- name: Free up space | ||
run: | | ||
echo "before freeing up space:" | ||
df -h | ||
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc | ||
echo "after freeing up space:" | ||
df -h | ||
# Workaround for https://github.com/rust-lang/cargo/issues/8719 | ||
- name: Set Swap Space | ||
uses: pierotofy/[email protected] | ||
with: | ||
swap-size-gb: 20 | ||
- run: | | ||
sudo mkdir -p /var/lib/docker | ||
sudo mount -t tmpfs -o size=10G none /var/lib/docker | ||
sudo systemctl restart docker | ||
swap-size-gb: 14 | ||
- name: Checkout sources | ||
uses: actions/checkout@v2 | ||
- name: Set up QEMU | ||
|