fix(test_static.py): fix Windows CPython 3.13 build #2
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
# Test various architectures by building out binaries with cibuildwheel. | |
name: test-wheels | |
on: | |
# Trigger the workflow on master but also allow it to run manually. | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
# TODO(vytas): Remove from PR when ready | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test-emulated: | |
name: "cibuildwheel: ${{ matrix.platform.build }}" | |
runs-on: ${{ matrix.platform.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- build: "cp313-manylinux_aarch64" | |
os: ubuntu-latest | |
emulation: true | |
- build: "cp313-manylinux_s390x" | |
os: ubuntu-latest | |
emulation: true | |
- build: "cp313-musllinux_x86_64" | |
os: ubuntu-latest | |
- build: "cp313-macosx_arm64" | |
os: macos-14 | |
- build: "cp313-win_amd64" | |
os: windows-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
if: ${{ matrix.platform.emulation }} | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS_LINUX: all | |
CIBW_BUILD: ${{ matrix.platform.build }} |