From 858d75d0affe1c4a5f122bd224844c270811f745 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 7 Aug 2024 13:39:31 -0500 Subject: [PATCH] Use a larger runner for Linux test jobs (#5883) From 8 to 16 cores, 32 to 64 GB RAM for a 2x per minute cost increase. As in: - #5874 - #5873 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8781b6558c6..fac44671beb1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,7 +145,7 @@ jobs: needs: determine_changes if: ${{ github.repository == 'astral-sh/uv' && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }} runs-on: - labels: "ubuntu-latest-large" + labels: "ubuntu-latest-xlarge" name: "cargo test | ubuntu" steps: - uses: actions/checkout@v4 @@ -171,7 +171,7 @@ jobs: cargo nextest run \ --features python-patch \ --workspace \ - --status-level skip --failure-output immediate-final --no-fail-fast -j 12 --final-status-level slow + --status-level skip --failure-output immediate-final --no-fail-fast -j 20 --final-status-level slow - name: "Smoke test" run: |