From 9ba06c8c6fde2153628d76a10909bb899fe012dc Mon Sep 17 00:00:00 2001 From: Leo Date: Fri, 19 Sep 2025 12:02:24 +0200 Subject: [PATCH] CI: Prevent intermittent checkout failures on NFS-based runners (#119) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13906f34..3e005113 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,12 +47,15 @@ jobs: /bin/bash -c "shopt -s dotglob; chown -R $UID /rocm-jax/* || true" - name: Checkout plugin repo uses: actions/checkout@v4 + with: + clean: false - name: Checkout JAX repo uses: actions/checkout@v4 with: # TODO: Load the ref from a file that sets the min and max JAX version # TODO: Change the repo and ref once we figure out how exactly we're going to # manage tests + clean: false repository: rocm/jax ref: rocm-jaxlib-v0.6.0 path: jax