Build & Publish TEST pypi #70
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 & Publish TEST pypi | |
on: workflow_dispatch | |
jobs: | |
build_binary_native: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-13, macos-14] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.20 | |
env: | |
CIBW_SKIP: pp* | |
CIBW_BEFORE_BUILD: python -c "import shutil ; shutil.copyfile('tools/setup-pypi.cfg','setup.apsw')" | |
CIBW_TEST_COMMAND: python -m apsw.tests -v | |
APSW_HEAVY_DURATION: 2 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist-${{ matrix.os }} | |
path: ./wheelhouse/*.whl | |
build_binary_qemu: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [aarch64] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: pypa/cibuildwheel@v2.20 | |
env: | |
CIBW_SKIP: pp* | |
CIBW_ARCHS_LINUX: ${{ matrix.arch }} | |
CIBW_BEFORE_BUILD: python -c "import shutil ; shutil.copyfile('tools/setup-pypi.cfg','setup.apsw')" | |
CIBW_TEST_COMMAND: python -m apsw.tests -v | |
APSW_HEAVY_DURATION: 2 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist-qemu-${{ matrix.arch }} | |
path: ./wheelhouse/*.whl | |
build_source: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create source dist | |
run: python setup.py sdist --for-pypi | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: dist-source | |
path: ./dist/* | |
pypi_publish: | |
needs: [build_source, build_binary_native, build_binary_qemu] | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: Stage wheels | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: dist-* | |
merge-multiple: true | |
path: dist | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
repository-url: https://test.pypi.org/legacy/ | |