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 <noreply@anthropic.com>
This commit is contained in:
Pepijn
2026-04-08 16:50:54 +02:00
parent 8bf77ef6b9
commit 13ee7009fe
+2 -2
View File
@@ -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 \