From b849f0f92d33f98c75aa3d37e2d1a3a596142f10 Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Mon, 14 Oct 2024 15:41:47 -0400 Subject: [PATCH] fix(ci): adjust `timeout-minutes` for xwin related jobs --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dce1c6f7d38..62f85e3617c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,8 @@ jobs: run: cargo clippy --workspace --all-targets --all-features --locked -- -D warnings cargo-clippy-xwin: - timeout-minutes: 10 + # Do not set timeout below 15 minutes as uncached xwin Windows SDK download can take 10+ minutes + timeout-minutes: 20 needs: determine_changes if: ${{ github.repository == 'astral-sh/uv' && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }} runs-on: ubuntu-latest @@ -324,7 +325,8 @@ jobs: # Separate jobs for the nightly crate windows-trampoline-check: - timeout-minutes: 10 + # Do not set timeout below 15 minutes as uncached xwin Windows SDK download can take 10+ minutes + timeout-minutes: 20 needs: determine_changes if: ${{ github.repository == 'astral-sh/uv' && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }} runs-on: ubuntu-latest