Skip to content

Commit b22ad19

Browse files
committed
Fix
Signed-off-by: Danil Lugovskoi <dl@matterlabs.dev>
1 parent a2eed3c commit b22ad19

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/ci-prover-e2e.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ jobs:
1515
CUDA_ARCH: "75;80;89;90"
1616
CUDAARCHS: "75;80;89;90"
1717
PASSED_ENV_VARS: "CUDA_ARCH,CUDAARCHS"
18-
1918
steps:
19+
# ci_run (docker exec as root) leaves root-owned files on this persistent runner; reclaim
20+
# ownership so the unprivileged checkout can clean them.
21+
- name: Reclaim workspace from prior runs
22+
run: |
23+
if command -v sudo >/dev/null 2>&1; then SUDO=sudo; fi
24+
${SUDO} chown -R "$(id -u):$(id -g)" "${GITHUB_WORKSPACE}" || true
25+
2026
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2127
with:
2228
submodules: "recursive"

0 commit comments

Comments
 (0)