-
Notifications
You must be signed in to change notification settings - Fork 28
206 lines (191 loc) · 6.98 KB
/
build-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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
name: Build wheels
on: [push, pull_request]
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || '' }}
cancel-in-progress: true
jobs:
build_wheels:
name: Build wheel - ${{ matrix.cibw.build }} ${{ matrix.os.name }}
runs-on: ${{ matrix.os.runs-on }}
strategy:
fail-fast: false
matrix:
os:
- name: macOS
runs-on: macos-10.14
matrix: macos
- name: Linux
runs-on: ubuntu-latest
matrix: linux
- name: Windows
runs-on: windows-latest
matrix: windows
cibw:
# build just supported python versions at May 2023
- build: cp27-*
group: old
- build: cp35-*
group: old
- build: cp36-*
group: old
- build: pp27-*
group: old
- build: pp36-*
group: old
- build: cp37-*
group: new
- build: cp38-*
group: new
- build: cp39-*
group: new
- build: cp310-*
group: new
- build: cp311-*
group: new
- build: pp27-*
group: old
- build: pp37-*
group: new
- build: pp38-*
group: new
- build: pp39-*
group: new
exclude:
- os:
matrix: windows
cibw:
build: cp27-*
- os:
matrix: windows
cibw:
build: pp27-*
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'recursive'
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.10'
- name: Prepare python
run: |
python -m pip install --upgrade pip
- name: Set up QEMU
if: matrix.os.matrix == 'linux'
uses: docker/setup-qemu-action@v1
with:
platforms: 'arm64'
- name: Build source distribution with Ubuntu
if: matrix.os.matrix == 'linux'
run: |
pip install build
python -m build --sdist --outdir dist .
- name: Build ${{ matrix.os.name }} wheels and test (old)
uses: joerick/[email protected]
if: matrix.cibw.group == 'old'
with:
output-dir: dist
env:
CIBW_BUILD: ${{ matrix.cibw.build }}
# Skip 32-bit builds // NO
# CIBW_SKIP: '*-win32 *_i686'
CIBW_MANYLINUX_I686_IMAGE: manylinux1
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
CIBW_MUSLLINUX_I686_IMAGE: musllinux_1_1
CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_1
# Only build on x86 and arm64 for linux
CIBW_ARCHS_LINUX: i686 x86_64
CIBW_BEFORE_ALL_LINUX: >
python -m pip install --upgrade pip
# CIBW_ARCHS_MACOS: x86_64 arm64 universal2
# Building two wheels for MacOS and skipping Universal
CIBW_ARCHS_MACOS: x86_64
# Skip testing Apple Silicon until there are GH runners
CIBW_TEST_SKIP: '*_arm64 *_universal2:arm64'
CIBW_BEFORE_ALL_MACOS: >
python -m pip install --upgrade pip
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.14
CIBW_BUILD_VERBOSITY_MACOS: 0
CIBW_BEFORE_ALL_WINDOWS: >
python -m pip install --upgrade pip
CIBW_TEST_COMMAND: >
python -m unittest discover -v -s {package}
- name: Build ${{ matrix.os.name }} wheels and test (new)
uses: joerick/[email protected]
if: matrix.cibw.group == 'new'
with:
output-dir: dist
env:
CIBW_BUILD: ${{ matrix.cibw.build }}
# Skip 32-bit builds // NO
# CIBW_SKIP: '*-win32 *_i686'
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux2014
CIBW_MUSLLINUX_I686_IMAGE: musllinux_1_1
CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_1
# Only build on x86 and arm64 for linux
CIBW_ARCHS_LINUX: auto aarch64
CIBW_BEFORE_ALL_LINUX: >
python -m pip install --upgrade pip
# CIBW_ARCHS_MACOS: x86_64 arm64 universal2
# Building two wheels for MacOS and skipping Universal
CIBW_ARCHS_MACOS: x86_64 arm64
# Skip testing Apple Silicon until there are GH runners
CIBW_TEST_SKIP: '*_arm64 *_universal2:arm64'
CIBW_BEFORE_ALL_MACOS: >
python -m pip install --upgrade pip
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.14
CIBW_BUILD_VERBOSITY_MACOS: 0
CIBW_BEFORE_ALL_WINDOWS: >
python -m pip install --upgrade pip
CIBW_TEST_COMMAND: >
python -m unittest discover -v -s {package}
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: wheels
path: ./dist
- name: Test for secrets access
id: check_secrets
# If a third party makes a pull request
# this allows automated steps below to be skipped
# and leave a clean PR CI run
shell: bash
run: |
unset HAS_SECRET
unset HAS_SECRET_TEST
if [ -n "$SECRET" ]; then HAS_SECRET='true' ; fi
if [ -n "$SECRET_TEST" ]; then HAS_SECRET_TEST='true' ; fi
echo ::set-output name=HAS_SECRET::${HAS_SECRET}
echo ::set-output name=HAS_SECRET_TEST::${HAS_SECRET_TEST}
env:
SECRET: "${{ secrets.pypi_password }}"
SECRET_TEST: "${{ secrets.test_pypi_password }}"
- name: Install twine
run: pip install twine
- name: Publish distribution to PyPI
if: >
startsWith(github.event.ref, 'refs/tags') &&
steps.check_secrets.outputs.HAS_SECRET
env:
# If the PR/Push has secret access
# and PYPI_PASSWORD is in GH Secrets for this repo
# and this is a tag, publish to PyPI
TWINE_REPOSITORY_URL: https://upload.pypi.org/legacy/
TWINE_USERNAME: "${{ secrets.pypi_username }}"
TWINE_NON_INTERACTIVE: 1
TWINE_PASSWORD: "${{ secrets.pypi_password }}"
run: twine upload --non-interactive --skip-existing --verbose 'dist/*'
- name: Publish distribution to Test PyPI
if: steps.check_secrets.outputs.HAS_SECRET
env:
# If the PR/Push has secret access
# and TEST_PYPI_PASSWORD is in GH Secrets for this repo
# then publish each build to test PyPI
TWINE_REPOSITORY_URL: https://test.pypi.org/legacy/
TWINE_USERNAME: "${{ secrets.test_pypi_username }}"
TWINE_NON_INTERACTIVE: 1
TWINE_PASSWORD: "${{ secrets.test_pypi_password }}"
run: twine upload --non-interactive --skip-existing --verbose 'dist/*'