diff --git a/.github/workflows/ci-integration-backwards-compatibility.yaml b/.github/workflows/ci-integration-backwards-compatibility.yaml index 2a5eca9d9e1ad..525aed662509b 100644 --- a/.github/workflows/ci-integration-backwards-compatibility.yaml +++ b/.github/workflows/ci-integration-backwards-compatibility.yaml @@ -77,9 +77,19 @@ jobs: - name: clean disk if: ${{ steps.check_changes.outputs.docs_only != 'true' }} run: | - sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc - sudo apt clean + 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 /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 diff --git a/.github/workflows/ci-integration-pulsar-io-ora.yaml b/.github/workflows/ci-integration-pulsar-io-ora.yaml index 41fd95355c394..22d8ba320ee37 100644 --- a/.github/workflows/ci-integration-pulsar-io-ora.yaml +++ b/.github/workflows/ci-integration-pulsar-io-ora.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