-
Notifications
You must be signed in to change notification settings - Fork 13
64 lines (56 loc) · 1.62 KB
/
_python-wheels.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# A reusable workflow for building cross-platform Python wheels
on:
workflow_call:
inputs:
publishToPyPI:
required: false
default: false
type: boolean
publishToTestPyPI:
required: false
default: false
type: boolean
jobs:
build-wheels:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
os: [linux-gnu, macos, windows]
architecture: [x86_64, aarch64]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install Zig
run: python -m pip install ziglang==0.11.0 wheel
- name: Build wheels
run: python python/make_wheels.py ${{ matrix.architecture }}-${{ matrix.os }}
- uses: actions/upload-artifact@v2
with:
name: wheels
path: ./wheelhouse/*.whl
upload-wheels-to-pypi:
runs-on: ubuntu-latest
timeout-minutes: 5
needs: [build-wheels]
if: inputs.publishToPyPI || inputs.publishToTestPyPI
steps:
- uses: actions/download-artifact@v2
with:
name: wheels
path: dist
- name: Publish package to PyPI
if: inputs.publishToPyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
- name: Publish package to Test PyPI
if: inputs.publishToTestPyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/