This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new be9686b5f4 Reclaim disk space before running integration tests be9686b5f4 is described below commit be9686b5f4e3e1a00cfb62427a1d781b97df4acd Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Wed Aug 9 09:01:20 2023 +0100 Reclaim disk space before running integration tests --- .github/workflows/camel-master-cron.yaml | 13 +++++++++++++ .github/workflows/ci-build.yaml | 13 +++++++++++++ .github/workflows/quarkus-master-cron.yaml | 13 +++++++++++++ 3 files changed, 39 insertions(+) diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml index b9345da400..fc98ae5973 100644 --- a/.github/workflows/camel-master-cron.yaml +++ b/.github/workflows/camel-master-cron.yaml @@ -114,6 +114,19 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.initial-mvn-install.outputs.matrix) }} steps: + - name: Reclaim Disk Space + run: | + df -h / + echo "Reclaiming disk space..." + sudo rm -rf /opt/ghc \ + rm -rf /opt/pipx \ + rm -rf /usr/local/go \ + rm -rf /usr/local/lib/android \ + rm -rf /usr/local/share/boost \ + rm -rf /usr/share/dotnet \ + rm -rf /usr/share/rust \ + rm -rf /usr/share/swift + df -h / - name: Download Maven Repo uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml index 143f69b9c9..f4f14dbdae 100644 --- a/.github/workflows/ci-build.yaml +++ b/.github/workflows/ci-build.yaml @@ -196,6 +196,19 @@ jobs: if: github.ref == 'refs/heads/quarkus-main' || github.base_ref == 'quarkus-main' run: | echo "BRANCH_OPTIONS=-Poss-snapshots -Dquarkus.version=999-SNAPSHOT" >> $GITHUB_ENV + - name: Reclaim Disk Space + run: | + df -h / + echo "Reclaiming disk space..." + sudo rm -rf /opt/ghc \ + rm -rf /opt/pipx \ + rm -rf /usr/local/go \ + rm -rf /usr/local/lib/android \ + rm -rf /usr/local/share/boost \ + rm -rf /usr/share/dotnet \ + rm -rf /usr/share/rust \ + rm -rf /usr/share/swift + df -h / - name: Checkout uses: actions/checkout@v2 with: diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml index 3a465f8762..c9e43f2b56 100644 --- a/.github/workflows/quarkus-master-cron.yaml +++ b/.github/workflows/quarkus-master-cron.yaml @@ -114,6 +114,19 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.initial-mvn-install.outputs.matrix) }} steps: + - name: Reclaim Disk Space + run: | + df -h / + echo "Reclaiming disk space..." + sudo rm -rf /opt/ghc \ + rm -rf /opt/pipx \ + rm -rf /usr/local/go \ + rm -rf /usr/local/lib/android \ + rm -rf /usr/local/share/boost \ + rm -rf /usr/share/dotnet \ + rm -rf /usr/share/rust \ + rm -rf /usr/share/swift + df -h / - name: Download Maven Repo uses: actions/download-artifact@v2 with: