Skip to content

Commit b67ee94

Browse files
committed
Actually copy the compiled files into place
1 parent 5a61a3c commit b67ee94

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ jobs:
240240
cmake -B ${{github.workspace}}/pybuild -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_MAYA=NO -DMAYA_PYTHON=NO -DSYSTEM_PY_VERSION=3
241241
242242
- name: Build
243-
run: cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
243+
run: |
244+
cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
245+
cp ./pybuild/src/python/${{env.BUILD_TYPE}}/pysimplex.pyd .
244246
245247
- name: Build Wheel
246248
run: |
@@ -276,7 +278,9 @@ jobs:
276278
cmake -G Xcode -B ${{github.workspace}}/pybuild -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_MAYA=NO -DMAYA_PYTHON=NO -DSYSTEM_PY_VERSION=3
277279
278280
- name: Build
279-
run: cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
281+
run: |
282+
cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
283+
cp ./pybuild/src/python/${{env.BUILD_TYPE}}/pysimplex.so .
280284
281285
- name: Build Wheel
282286
run: |
@@ -310,7 +314,9 @@ jobs:
310314
cmake -B ${{github.workspace}}/pybuild -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_MAYA=NO -DMAYA_PYTHON=NO -DSYSTEM_PY_VERSION=3
311315
312316
- name: Build
313-
run: cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
317+
run: |
318+
cmake --build ${{github.workspace}}/pybuild --config ${{env.BUILD_TYPE}}
319+
cp ./pybuild/src/python/${{env.BUILD_TYPE}}/pysimplex.so .
314320
315321
- name: Build Wheel
316322
run: |

0 commit comments

Comments
 (0)