mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-06 06:30:51 +03:00
Add experimental aarch64 builds
This commit is contained in:
parent
021e2e5bde
commit
8002ce71a8
23
.github/workflows/publishing.yml
vendored
23
.github/workflows/publishing.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Publishing
|
||||
name: Building and publishing
|
||||
|
||||
on:
|
||||
push:
|
||||
|
@ -41,9 +41,28 @@ jobs:
|
|||
with:
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
build-wheels-linux-custom-archs:
|
||||
name: Build wheels
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [aarch64]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.9
|
||||
- run: pip install cibuildwheel==1.8.0
|
||||
- run: cibuildwheel --archs ${{ matrix.archs }} --output-dir wheelhouse
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: ./wheelhouse/*.whl
|
||||
|
||||
upload-to-pypi:
|
||||
name: Publish on PyPI
|
||||
needs: [build-sdist, build-wheels]
|
||||
needs: [build-sdist, build-wheels, build-wheels-linux-custom-archs]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/download-artifact@v2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
"""Top-level package."""
|
||||
|
||||
__version__ = '4.10.3dev4'
|
||||
__version__ = '4.10.3dev5'
|
||||
"""Version number.
|
||||
|
||||
:type: str
|
||||
|
|
Loading…
Reference in New Issue
Block a user