Wheel #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Wheel | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| wheel: | |
| strategy: | |
| max-parallel: 2 | |
| # let some wheels complete even if others fail | |
| fail-fast: false | |
| matrix: | |
| python_version: ['3.9'] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python ${{ matrix.python_version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| architecture: x64 | |
| - name: Build Python package | |
| run: python setup.py bdist_wheel | |
| #- name: Upload a Build Artifact | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: python_javabridge-2.4.4-cp39-cp39-manylinux-x86_64.whl | |
| # path: dist/ |