Build Python Wheel #1
This file contains 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: Build Python Wheel | |
# For now, just trigger this workflow manually. | |
on: [workflow_dispatch] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
#os: [ubuntu-20.04, windows-latest, macos-latest] | |
os: [ubuntu-20.04, windows-latest] | |
# We're using third party actions (not just the official GitHub-maintained actions), | |
# so it's very important to minimise the ability for this workflow to do anything dangerous. | |
# Grant it only read access to the repository content (which is public anyway); it shouldn't | |
# need anything else. | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
# Skip PyPy, 32-bit Windows, 32-bit Linux, and CPython before 3.9. | |
# See https://cibuildwheel.readthedocs.io/en/stable/options/#examples_1 | |
CIBW_SKIP: "*-win32 pp* *-manylinux_i686 *-musllinux_i686 cp36-* cp37-* cp38-*" | |
CIBW_TEST_COMMAND: > | |
python {package}/python/_jsonnet_test.py | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | |
path: ./wheelhouse/*.whl |