mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-11-27 01:50:50 +00:00
Free up space on Ubuntu runner for nuttx spec tests.
LLVM 21 update uses more disk space and makes the standard runner fail with "No space left on device". Using the [free disk space action](https://github.com/marketplace/actions/free-disk-space-ubuntu) to delete the unused Android, Haskell, and .NET runtimes frees up space on the runner.
This commit is contained in:
parent
f4dc4e1be3
commit
afdba12f9f
13
.github/workflows/spec_test_on_nuttx.yml
vendored
13
.github/workflows/spec_test_on_nuttx.yml
vendored
|
|
@ -37,6 +37,19 @@ jobs:
|
|||
permissions:
|
||||
contents: read
|
||||
actions: write
|
||||
uses: jlumbroso/free-disk-space@v1.3.1
|
||||
with:
|
||||
# Deletes Android, Haskell, and .NET runtimes from the runner, freeing
|
||||
# about 15 GB.
|
||||
android: true
|
||||
dotnet: true
|
||||
haskell: true
|
||||
# Keeps the tool cache, some large packages, docker images, and swap.
|
||||
# Some of these could also be removed if more space is needed.
|
||||
tool-cache: false
|
||||
large-packages: false
|
||||
docker-images: false
|
||||
swap-storage: false
|
||||
uses: ./.github/workflows/build_llvm_libraries.yml
|
||||
with:
|
||||
os: "ubuntu-22.04"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user