Free more disk space for running tests (#8882)
This commit is contained in:
parent
c454de9ca6
commit
d701967f2d
|
@ -162,6 +162,14 @@ jobs:
|
|||
vm: openj9
|
||||
fail-fast: false
|
||||
steps:
|
||||
# tests may fail without freeing up more disk space on the runner
|
||||
- name: Free disk space
|
||||
run: |
|
||||
df -h
|
||||
sudo rm -rf /usr/local/lib/android
|
||||
sudo rm -rf /usr/share/dotnet
|
||||
df -h
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- id: setup-test-java
|
||||
|
@ -285,7 +293,7 @@ jobs:
|
|||
run: git config --system core.longpaths true
|
||||
if: matrix.os == 'windows-latest'
|
||||
|
||||
# downloading the liberty image (a bit over 10gb) fails without freeing up more disk space on the runner
|
||||
# downloading the liberty image (a bit over 10gb) fails without freeing up more disk space on the runner
|
||||
- name: Free disk space
|
||||
run: |
|
||||
df -h
|
||||
|
|
Loading…
Reference in New Issue