From 13ee7009fef5ea87c94d90ebeb0f421769b02966 Mon Sep 17 00:00:00 2001 From: Pepijn Date: Wed, 8 Apr 2026 16:50:54 +0200 Subject: [PATCH] fix(ci): chmod 777 artifact dirs so non-root container can write videos Container runs as user_lerobot (non-root); host-mounted /artifacts volume was owned by root, causing PermissionError on first video write. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/benchmark_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/benchmark_tests.yml b/.github/workflows/benchmark_tests.yml index 480e36149..7284340b9 100644 --- a/.github/workflows/benchmark_tests.yml +++ b/.github/workflows/benchmark_tests.yml @@ -102,7 +102,7 @@ jobs: - name: Run Libero smoke eval (1 episode) run: | - mkdir -p /tmp/libero-artifacts + mkdir -p /tmp/libero-artifacts && chmod 777 /tmp/libero-artifacts docker run --rm --gpus all \ --shm-size=4g \ -e HF_HOME=/tmp/hf \ @@ -166,7 +166,7 @@ jobs: - name: Run MetaWorld smoke eval (1 episode) run: | - mkdir -p /tmp/metaworld-artifacts + mkdir -p /tmp/metaworld-artifacts && chmod 777 /tmp/metaworld-artifacts docker run --rm --gpus all \ --shm-size=4g \ -e HF_HOME=/tmp/hf \