We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca3889 commit f90e8b7Copy full SHA for f90e8b7
.github/workflows/integration_tests.yml
@@ -433,6 +433,15 @@ jobs:
433
with:
434
ref: ${{needs.check_and_prepare.outputs.github_ref}}
435
submodules: true
436
+ - run: df -h
437
+ - name: Free Disk Space (Ubuntu)
438
+ if: runner.os == 'Linux'
439
+ run: |
440
+ # Delete large unused libraries/packages to free up space
441
+ sudo rm -rf /usr/share/dotnet /opt/ghc /opt/hostedtoolcache/CodeQL
442
+ sudo docker image prune --all --force
443
+ sudo docker builder prune -a
444
445
- name: Force Java 11
446
if: ${{ !(runner.os == 'macOS') }}
447
shell: bash
0 commit comments