diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2025-02-04 07:55:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-04 06:55:13 +0000 |
commit | 0d51578cc37b8ab392a930bc0a0f38ada2bb7913 (patch) | |
tree | c017d5d261f0c85ec2a8436df237725cc2530920 /.github | |
parent | 44613807921541bec2b6ed81b8d049459622d13c (diff) | |
download | servo-0d51578cc37b8ab392a930bc0a0f38ada2bb7913.tar.gz servo-0d51578cc37b8ab392a930bc0a0f38ada2bb7913.zip |
ci: Free some disc space on GitHub hosted runners (#35181)
Speculative fix for #35179
Signed-off-by: Samson <16504129+sagudev@users.noreply.github.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/linux.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6ee1303edd3..a64f5e91b00 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -132,6 +132,13 @@ jobs: run: | git switch --detach git reset --hard FETCH_HEAD + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + if: ${{ runner.environment != 'self-hosted' }} + with: + tool-cache: false + large-packages: false + swap-storage: false - name: Install LLVM and Clang # Expliclity install Clang 14 on Ubuntu 20.04 used by the nightly job (#34713). if: ${{ runner.environment != 'self-hosted' && inputs.upload }} |