-
Notifications
You must be signed in to change notification settings - Fork 29
203 lines (162 loc) · 5.26 KB
/
deploy.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
name: Build and upload to PyPI
on:
workflow_dispatch:
release:
types: [published]
env:
CIBW_BUILD: cp3*
CIBW_SKIP: cp36-* cp37-* cp38-*
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@v5
name: Install Python
with:
python-version: '3.13'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: artifact-win-${{matrix.arch}}
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@v5
name: Install Python
with:
python-version: '3.13'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: artifact-mac-${{matrix.arch}}
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@v5
name: Install Python
with:
python-version: '3.13'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: artifact-${{ matrix.distro }}-${{matrix.arch}}
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@v5
name: Install Python
with:
python-version: '3.13'
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: artifact-musllinux-${{matrix.arch}}
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@v5
name: Install Python
with:
python-version: '3.13'
- name: Install build
run: pip install build
- name: Build sdist
run: python -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: artifact-source
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@v4
with:
pattern: artifact-*
merge-multiple: true
path: dist
- uses: pypa/gh-action-pypi-publish@v1.10.3
with:
user: __token__
password: ${{ secrets.pypi_password }}
# password: ${{ secrets.testpypi_password }}
# repository_url: https://test.pypi.org/legacy/