Build and upload to PyPI #37
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 and upload to PyPI | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
env: | |
CIBW_BUILD: cp3* | |
CIBW_SKIP: cp36-* cp37-* | |
CIBW_TEST_REQUIRES: pytest | |
CIBW_TEST_COMMAND: pytest {project}/test/PyGLM_test.py -v | |
jobs: | |
build_wheels_windows: | |
name: Build wheels on Windows (${{ matrix.arch }}) | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
arch: [AMD64, x86, ARM64] | |
env: | |
CIBW_ARCHS: ${{matrix.arch}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_wheels_mac: | |
name: Build wheels on MacOS (${{ matrix.arch }}) | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
arch: [x86_64, arm64] | |
env: | |
CIBW_ARCHS: ${{matrix.arch}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_wheels_manylinux: | |
name: Build wheels on ${{ matrix.distro }} for ${{ matrix.arch }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
distro: [manylinux2014, manylinux_2_28] | |
arch: [x86_64, aarch64, s390x] | |
include: | |
- distro: manylinux2014 | |
arch: i686 | |
env: | |
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.distro }} | |
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.distro }} | |
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.distro }} | |
CIBW_MANYLINUX_S390X_IMAGE: ${{ matrix.distro }} | |
CIBW_BUILD: cp3*-manylinux* | |
CIBW_ARCHS: ${{matrix.arch}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up QEMU | |
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }} | |
uses: docker/setup-qemu-action@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_wheels_musllinux: | |
name: Build wheels on musllinux_1_1 for ${{ matrix.arch }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
arch: [x86_64, i686, aarch64, s390x] | |
env: | |
CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_1 | |
CIBW_MUSLLINUX_I686_IMAGE: musllinux_1_1 | |
CIBW_MUSLLINUX_AARCH64_IMAGE: musllinux_1_1 | |
CIBW_MUSLLINUX_S390X_IMAGE: musllinux_1_1 | |
CIBW_BUILD: cp3*-musllinux* | |
CIBW_ARCHS: ${{matrix.arch}} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Set up QEMU | |
if: ${{ matrix.arch != 'x86_64' && matrix.arch != 'i686' }} | |
uses: docker/setup-qemu-action@v3 | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install cibuildwheel | |
run: python -m pip install cibuildwheel==2.16.2 | |
- name: Build wheels | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- uses: actions/setup-python@v4 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install build | |
run: pip install build | |
- name: Build sdist | |
run: python -m build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [build_wheels_windows, build_wheels_mac, build_wheels_manylinux, build_wheels_musllinux, build_sdist] | |
runs-on: ubuntu-latest | |
#if: github.event_name == 'release' && github.event.action == 'published' | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: artifact | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@v1.8.10 | |
with: | |
user: __token__ | |
password: ${{ secrets.pypi_password }} | |
# password: ${{ secrets.testpypi_password }} | |
# repository_url: https://test.pypi.org/legacy/ |