You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix GitHub Actions: Use full path to Blender executable in BlenderKit containers
Problem:
- After switching to blenderkit/headless-blender images, workflow was failing with 'blender: not found' (exit code 127)
- The 'blender' command is not in PATH in these containers
Solution:
- Blender is installed at /home/headless/blender/blender in BlenderKit containers
- Updated all workflow steps to use full path: /home/headless/blender/blender
- Applied to all three jobs:
- test-blender-5 (Blender 5.0)
- test-blender-4 (Blender 4.2 LTS)
- quick-check (Quick smoke test)
Changes:
- Verify Blender version: blender → /home/headless/blender/blender
- Install Python dependencies: blender → /home/headless/blender/blender
- Run test suite: blender → /home/headless/blender/blender
0 commit comments