diff --git a/.github/workflows/ci-integration-pulsar-io.yaml b/.github/workflows/ci-integration-pulsar-io.yaml index e08cc261e7928..e7a590057c218 100644 --- a/.github/workflows/ci-integration-pulsar-io.yaml +++ b/.github/workflows/ci-integration-pulsar-io.yaml @@ -77,10 +77,19 @@ jobs: - name: clean disk if: ${{ steps.check_changes.outputs.docs_only != 'true' }} run: | + echo "::group::Available diskspace" + time df -BM / /mnt + echo "::endgroup::" sudo swapoff -a - sudo rm -rf /swapfile /usr/share/dotnet /usr/local/lib/android /opt/ghc - sudo apt clean + sudo rm -rf /swapfile /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL + echo "::group::Cleaning apt state" + time sudo bash -c "apt-get clean; apt-get autoclean; apt-get -y --purge autoremove" + time df -BM / /mnt + echo "::endgroup::" docker rmi $(docker images -q) -f + echo "::group::Available diskspace" + time df -BM / /mnt + echo "::endgroup::" df -h - name: run install by skip tests