ci: Free some disc space on GitHub hosted runners (#35181)

Speculative fix for #35179

Signed-off-by: Samson <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
Samson 2025-02-04 07:55:13 +01:00 committed by GitHub
parent 4461380792
commit 0d51578cc3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 }}