diff options
| author | Damien George <damien@micropython.org> | 2024-10-03 07:35:40 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-10-03 10:36:27 +1000 |
| commit | 1291718916d023624be2b66d7396aa111eb8cbd5 (patch) | |
| tree | 742b5089a289fe1532f9b6530e5d2273f27dea21 | |
| parent | a9803f47115ff2319232e89b6c4c5b380bad5c2b (diff) | |
github/workflows: Free up disk space on zephyr workflow.
The zephyr builds take up quite a lot of space.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | .github/workflows/ports_zephyr.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/ports_zephyr.yml b/.github/workflows/ports_zephyr.yml index d075582f3..444b0973d 100644 --- a/.github/workflows/ports_zephyr.yml +++ b/.github/workflows/ports_zephyr.yml @@ -20,6 +20,15 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: jlumbroso/free-disk-space@main + with: + # Only free up a few things so this step runs quickly. + android: false + dotnet: true + haskell: true + large-packages: false + docker-images: false + swap-storage: false - uses: actions/checkout@v4 - name: Install packages run: source tools/ci.sh && ci_zephyr_setup |
