From 44611a674fecd6cb242566f63812a6da08051ae1 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 30 Nov 2023 06:07:15 +1000 Subject: [PATCH] Actually just use a larger runner --- .github/workflows/ci-build-crates.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-build-crates.yml b/.github/workflows/ci-build-crates.yml index e36ab5ddaec..a5aa0c6d65c 100644 --- a/.github/workflows/ci-build-crates.yml +++ b/.github/workflows/ci-build-crates.yml @@ -101,7 +101,8 @@ jobs: name: Build ${{ matrix.crate }} crate timeout-minutes: 90 needs: [ matrix, check-matrix ] - runs-on: ubuntu-latest + # Some of these builds take more than 14GB disk space + runs-on: ubuntu-latest-m strategy: # avoid rate-limit errors by only launching a few of these jobs at a time max-parallel: 2 @@ -142,11 +143,6 @@ jobs: - name: Build ${{ matrix.crate }} crate with all features run: | - # Work around a "No space left on device" error - # TODO: use a runner with a bigger disk - if [[ ${{ matrix.crate }} == "zebrad" ]]; then - cargo clean - fi cargo clippy --package ${{ matrix.crate }} --all-features --all-targets -- -D warnings cargo build --package ${{ matrix.crate }} --all-features --all-targets