-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Free up more space on GitHub Actions CI. (#234)
* Free up more space on GitHub Actions CI. This is from GitHub support recommendation: https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/m-p/47691/highlight/true#M6920 * Trigger fuzzers CI. * Add more df's to see swap file size. * Remove unneeded df's, only leave one at end.
- Loading branch information
1 parent
2177a4d
commit 66ccc64
Showing
3 changed files
with
12 additions
and
2 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
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 |
---|---|---|
|
@@ -39,10 +39,20 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Clear unnecessary files | ||
run: | | ||
sudo swapoff -a | ||
sudo rm -f /swapfile | ||
sudo apt clean | ||
docker rmi $(docker images -a -q) | ||
df -h | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.7 | ||
|
||
- name: Build Benchmarks | ||
run: | | ||
python .github/workflows/build.py $BENCHMARK_TYPE $FUZZER |
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