moved pure py build to secondary wheels #26
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 secondary wheels | |
on: | |
push: | |
tags: | |
- v* | |
pull_request: | |
paths: | |
- '**' | |
jobs: | |
build_wheels: | |
name: Build secondary wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
cibw_archs: "native" | |
- os: ubuntu-latest | |
cibw_archs: "aarch64" | |
- os: windows-latest | |
cibw_archs: "ARM64" | |
- os: macos-latest | |
cibw_archs: "native arm64" | |
steps: | |
- name: Set up QEMU | |
if: matrix.cibw_archs == 'aarch64' | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: arm64 | |
- uses: actions/checkout@v3 | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: ${{ matrix.cibw_archs }} | |
CIBW_SKIP: "cp311-* pp* *-manylinux_x86_64*" | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: python {package}/test/debug.py && pytest {package} | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build: | |
name: Build pure py | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ">=3.6" | |
- name: Install dependencies | |
run: pip install -U pip setuptools wheel pytest | |
- name: Install module | |
run: FROZENDICT_PURE_PY=1 python setup.py install | |
- name: Test with pytest | |
run: pytest | |
- name: Build package | |
run: FROZENDICT_PURE_PY=1 python setup.py bdist_wheel | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.whl | |
build_sdist: | |
name: Build sdist on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
cibw_archs: "native" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build sdist | |
run: pipx run build --sdist | |
- name: Copy sdist package | |
run: cp dist/frozendict-*.tar.gz dist/frozendict.tar.gz | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_ARCHS: ${{ matrix.cibw_archs }} | |
CIBW_BUILD: "cp310-*" | |
CIBW_SKIP: "*-musllinux_*" | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: python {package}/test/debug.py && pytest {package} | |
with: | |
package-dir: dist/frozendict.tar.gz | |
- name: Remove test sdist package | |
run: rm dist/frozendict.tar.gz | |
- name: Upload sdist artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz |