Skip to content

Commit

Permalink
Get more disk space
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebusm committed Nov 12, 2024
1 parent 97644bf commit e76e940
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,11 @@ jobs:
CMAKE_BUILD_PARALLEL_LEVEL: ${{vars.CMAKE_BUILD_PARALLEL_LEVEL}}

# ========================= Leader steps =========================
- name: Remove GitHub default packages # To save space
- name: Remove GitHub default packages (baseimage) # To save space
if: inputs.job_type == 'build-python-wheels' && matrix.os == 'linux'
uses: jlumbroso/free-disk-space@main

- name: Remove GitHub default packages (manylinux) # To save space
if: inputs.job_type == 'cpp-tests' && matrix.os == 'linux'
run: |
du -m /mnt/usr/local/lib/ | sort -n | tail -n 50
Expand Down

0 comments on commit e76e940

Please sign in to comment.