Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,22 +111,22 @@ jobs:
Copy-Item -Path "~/opensim-core-install" -Destination "opensim-core-${{ steps.configure.outputs.version }}" -Recurse
7z a "opensim-core-${{ steps.configure.outputs.version }}.zip" "opensim-core-${{ steps.configure.outputs.version }}"

# - name: Build wheel
# run: |
# cd ~/opensim-core-install/sdk/python
# python3 setup.py bdist_wheel
# - name: Upload windows wheel
# uses: actions/upload-artifact@v4
# with:
# name: opensim-4.5.2-cp311-cp311-win_amd64.whl
# path: ~/opensim-core-install/sdk/python/dist/opensim-4.5.2-cp311-cp311-win_amd64.whl
#
# - name: Test Python bindings
# run: |
# cd ~/opensim-core-install/sdk/python
# pip install dist/opensim-4.5.2-cp311-cp311-win_amd64.whl
# # Run the python tests, verbosely.
# python3 -m unittest discover --start-directory opensim/tests --verbose
- name: Build wheel
run: |
cd ~/opensim-core-install/sdk/python
python3 setup.py bdist_wheel
- name: Upload windows wheel
uses: actions/upload-artifact@v4
with:
name: opensim-4.5.2-cp311-cp311-win_amd64.whl
path: ~/opensim-core-install/sdk/python/dist/opensim-4.5.2-cp311-cp311-win_amd64.whl

- name: Test Python bindings
run: |
cd ~/opensim-core-install/sdk/python
pip install dist/opensim-4.5.2-cp311-cp311-win_amd64.whl
# Run the python tests, verbosely.
python3 -m unittest discover --start-directory opensim/tests --verbose

- name: Upload opensim-core
uses: actions/upload-artifact@v4
Expand Down
Loading