tgcrypto: github: workflows: use latest version of cibuildwheel #21
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 wheels | |
on: [push] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v5 | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
env: | |
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" | |
CIBW_TEST_REQUIRES: tox | |
CIBW_TEST_COMMAND: cd {project} && tox | |
CIBW_TEST_SKIP: "*-win*" | |
CIBW_BUILD_VERBOSITY: 1 | |
- name: Store wheels | |
uses: actions/upload-artifact@v2 | |
with: | |
path: ./wheelhouse/*.whl |