pygambit wheels #168
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: pygambit wheels | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| schedule: | |
| - cron: '0 6 * * 4' | |
| workflow_dispatch: | |
| jobs: | |
| windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Set up dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install cython nose2 wheel lxml numpy scipy cibuildwheel | |
| - name: Build wheels | |
| run: | | |
| python -m cibuildwheel --output-dir wheelhouse/ | |
| env: | |
| CIBW_SKIP: "pp*" | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| path: ./wheelhouse/*.whl |