Skip to content

Commit e075de6

Browse files
committed
Update blender-test.yml
1 parent 6efe90a commit e075de6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/blender-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,14 @@ jobs:
4949
sp.run([r'${PYTHON_BIN}', '-m', 'pip', 'install', '--upgrade', 'pip'], check=True); \
5050
sp.run([r'${PYTHON_BIN}', '-m', 'pip', 'install', 'pytest'], check=True)"
5151
52+
- name: Download wheels to build Blender extension
53+
run: |
54+
"${PYTHON_BIN}" -m pip download --requirement requirements-dev.txt --dest src/multiple_camera_render/wheels
55+
5256
- name: Build Blender extension
5357
run: |
5458
mkdir -p "${{ github.workspace }}/dist"
55-
59+
5660
${{ env.BLENDER_DIR }}/blender --command extension build --source-dir="${{ github.workspace }}/src/multiple_camera_render" --output-dir="${{ github.workspace }}/dist"
5761
echo "Blender extension built successfully."
5862
EXTENSION_ZIP=$(find "${{ github.workspace }}/dist" -type f -name "*.zip" | head -n 1)

0 commit comments

Comments
 (0)