Skip to content

Commit

Permalink
Fix: Build error
Browse files Browse the repository at this point in the history
  • Loading branch information
nutti committed Aug 14, 2023
1 parent dc46009 commit 73e07a4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fake-bpy-module-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
# For example: 00:29:45 UTC will create a file version
# "...dev2945-py3-none..." and not use {{ module_version }}
# "...dev002945-py3-none..."
run: bash tests/pylint_cycles.sh ${{ matrix.blender_version }} ./blender/ ./release/${{ matrix.blender_version }}/fake_bpy_module_${{ matrix.blender_version }}-*-py3-none-any.whl
run: bash tests/pylint_cycles.sh blender ${{ matrix.blender_version }} ./blender/ ./release/${{ matrix.blender_version }}/fake_bpy_module_${{ matrix.blender_version }}-*-py3-none-any.whl

- name: Collect failure state
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fake-bpy-module-latest-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
run: bash tests/run_tests.sh raw_modules

- name: Test generated pip module against Cycles addon
run: bash tests/pylint_cycles.sh latest ./blender/ ./release/latest/fake_bpy_module_latest-*-py3-none-any.whl
run: bash tests/pylint_cycles.sh blender latest ./blender/ ./release/latest/fake_bpy_module_latest-*-py3-none-any.whl

- name: Collect failure state
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion tests/pylint_cycles.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -eEu

if [ $# -ne 3 ]; then
if [ $# -ne 4 ]; then
echo "Usage: pylint_test.sh <target> <target-version> <target-source-dir> <fake-bpy-wheel-file>"
exit 1
fi
Expand Down

0 comments on commit 73e07a4

Please sign in to comment.