Skip to content

Commit 3b56be0

Browse files
claudeNormandErwan
authored andcommitted
fix(ci): use linux-il2cpp image, no base tag exists for Unity 6
The ubuntu-6000.0.73f1-base-3 tag does not exist. Only platform-specific images are published for Unity 6000.0.73f1: android, webgl, linux-il2cpp, mac-mono. Switch to ubuntu-6000.0.73f1-linux-il2cpp-3.2.2, which includes the full editor with all managed DLLs. Also add mkdir -p lib before docker cp since the cache step may not have restored the directory on a cache miss. https://claude.ai/code/session_01N4YoJdJc2JDaoAbk5Nt8vf
1 parent 769c27f commit 3b56be0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/documentation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
- name: Extract Unity managed DLLs from game-ci image
3737
if: steps.cache-unity-dlls.outputs.cache-hit != 'true'
3838
run: |
39-
docker create --name unity-editor unityci/editor:ubuntu-6000.0.73f1-base-3
39+
mkdir -p lib
40+
docker create --name unity-editor unityci/editor:ubuntu-6000.0.73f1-linux-il2cpp-3.2.2
4041
docker cp unity-editor:/opt/unity/Editor/Data/Managed/UnityEngine lib/
4142
docker rm unity-editor
4243

0 commit comments

Comments
 (0)