-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add jlumbroso/free-disk-space to ./github/workflows/test.yml
- Loading branch information
dj8yf0μl
committed
Nov 18, 2024
1 parent
df6230c
commit f3066fc
Showing
1 changed file
with
16 additions
and
0 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 |
---|---|---|
|
@@ -53,6 +53,22 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Free Disk Space (Ubuntu) | ||
if: matrix.platform == 'ubuntu-latest' | ||
uses: jlumbroso/[email protected] | ||
with: | ||
# this might remove tools that are actually needed, | ||
# if set to "true" but frees about 6 GB | ||
tool-cache: false | ||
|
||
# all of these default to true, but feel free to set to | ||
# "false" if necessary for your workflow | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
large-packages: true | ||
docker-images: true | ||
swap-storage: true | ||
- name: "${{ matrix.toolchain }}" | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
|