Release v4.0.2 #7
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: | |
tags: | |
- v** | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macos-13, macos-14] | |
arch: [native] | |
include: | |
- os: ubuntu-20.04 | |
arch: aarch64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: pybind/pybind11 | |
ref: v2.11.1 | |
path: contrib/pybind11 | |
- uses: actions/checkout@v4 | |
with: | |
repository: mapbox/protozero | |
ref: v1.7.1 | |
path: contrib/protozero | |
- uses: actions/checkout@v4 | |
with: | |
repository: osmcode/libosmium | |
ref: v2.20.0 | |
path: contrib/libosmium | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
if: ${{ matrix.arch == 'aarch64' }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: ${{ matrix.arch }} | |
CIBW_SKIP: "pp* *musllinux* cp37-macosx_* {cp37,cp38}-*linux_aarch64" | |
CIBW_TEST_REQUIRES: pytest pytest-httpserver shapely | |
CIBW_TEST_REQUIRES_LINUX: urllib3<2.0 pytest pytest-httpserver shapely | |
CIBW_TEST_COMMAND: pytest {project}/test | |
CIBW_BUILD_FRONTEND: build | |
CIBW_BEFORE_BUILD_LINUX: yum install -y expat-devel boost-devel zlib-devel bzip2-devel lz4-devel | |
CIBW_BEFORE_BUILD_MACOS: brew install boost | |
CIBW_BEFORE_BUILD_WINDOWS: vcpkg install bzip2:x64-windows expat:x64-windows zlib:x64-windows boost-variant:x64-windows boost-iterator:x64-windows lz4:x86-windows | |
CIBW_ENVIRONMENT_WINDOWS: 'CMAKE_TOOLCHAIN_FILE="C:/vcpkg/scripts/buildsystems/vcpkg.cmake"' | |
CIBW_ENVIRONMENT_MACOS: CMAKE_WITH_LZ4=OFF MACOSX_DEPLOYMENT_TARGET=11.0 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: pyosmium-wheels-${{ matrix.os }}-${{ matrix.arch }} | |
path: ./wheelhouse/*.whl |