Unit tests #357
Workflow file for this run
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 | |
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-24.04, windows-2022, macOS-14] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 # needed for history/tags | |
# Enable emulation for aarch64 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
# Used to host cibuildwheel | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Get python_ics version | |
uses: mtkennerly/dunamai-action@v1 | |
with: | |
env-var: PYTHON_ICS_VERSION | |
args: --format "v{base}-{commit}-{timestamp}" | |
- name: Print python_ics version | |
run: echo $PYTHON_ICS_VERSION | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.18.1 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: python_ics-${{ matrix.os }}-${{ env.PYTHON_ICS_VERSION }} | |
path: ./wheelhouse/*.whl | |
if-no-files-found: error | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: python_ics-* | |
merge-multiple: true | |
path: ./wheelhouse/ |