From 96c655d0d0a42422fd31f6783acd3de16f9880d3 Mon Sep 17 00:00:00 2001 From: Jon C Date: Thu, 31 Oct 2024 19:10:28 +0100 Subject: [PATCH] CI: Purge ubuntu runner for clippy step #### Problem It looks like the clippy CI step is running out of space on the build machine. #### Summary of changes Use the purge script for the clippy step. --- .github/workflows/pull-request.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 4fa246c9820..7e730b72183 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -47,6 +47,9 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Remove unneeded packages for more space + run: bash ./ci/warning/purge-ubuntu-runner.sh + - name: Set env vars run: | source ci/rust-version.sh