Skip to content

Commit

Permalink
Free up more space for github actions (#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismellike authored Oct 7, 2024
1 parent bc42b27 commit b0c7ef1
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v2

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

- name: Install latest stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

- name: Install latest nightly toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/test_tube.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ jobs:
- name: Checkout sources
uses: actions/checkout@v3

- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
docker-images: true
swap-storage: true

- name: Install latest nightly toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down

0 comments on commit b0c7ef1

Please sign in to comment.