-
Notifications
You must be signed in to change notification settings - Fork 6
237 lines (222 loc) · 7.33 KB
/
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
name: Build, test, and deploy, wheels
on:
schedule:
- cron: "0 0 1 * *"
release:
types: [created]
pull_request:
branches: [main, dev]
jobs:
macOS_wheel:
name: Build macOS/x86 wheels
runs-on: macos-latest
strategy:
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install deps
run: |
brew install gsl
# Upgrade pip to get bdist_wheel
pip install --upgrade pip
pip install setuptools wheel build
# Instead of letting setup.py install a newer numpy we install it here
# using the oldest supported version for ABI compatibility
pip install oldest-supported-numpy
- name: Build Wheel
run: |
python -m build --wheel
- name: Delocate to bundle dynamic libs
run: |
pip install delocate
delocate-wheel -v dist/*.whl
# The following is going to be fragile:
# 1. The workflow gives a bizzare platform
# name to the wheels, macosx_11_0.
# 1a. On 19 Nov, 2022, it seems to have changed to macosx_12_0
# 2. But, the CI totally works on the 10_15 platform
# 3. The odd platform name means the wheels won't
# install on any macosx I can get ahold of.
# 4. So, we just rename them.
- name: rename wheel (HACK ALERT)
run: |
for i in dist/*.whl; do
echo $i
mv $i $(ls $i | sed 's/macosx_12_0/macosx_10_15/g')
done
- name: Upload Wheels
uses: actions/upload-artifact@v3
with:
name: macOS-wheel-${{ matrix.python }}
path: dist
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Build sdist
shell: bash
run: |
python -m pip install --upgrade pip setuptools
python setup.py sdist
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: sdist
path: dist
manylinux2_28:
name: Build and test Linux wheels
runs-on: ubuntu-latest
strategy:
matrix:
python: ["python3.8", "python3.9", "python3.10", "python3.11"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Build wheels in docker
shell: bash
run: |
bash deployment/linux_wheels/run_wheel_workflow.sh ${{ matrix.python }}
#docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux_2_28_x86_64:2022-10-02-69a0972 bash .github/workflows/manylinux/buildwheels.sh
- name: Upload Wheels
uses: actions/upload-artifact@v3
with:
name: linux-wheels
path: dist/wheelhouse
manylinux2_28_test:
name: Build package from source dist
runs-on: ubuntu-latest
needs: ['build_sdist']
strategy:
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
- name: Download sdist
uses: actions/download-artifact@v3.0.2
with:
name: sdist
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install sdist into venv
run: |
python -m venv sdist_venv
source sdist_venv/bin/activate
python -m pip install --upgrade pip setuptools
python -m pip install *.gz
# The cd is to move us away from
# the project repo root where the module is not built
cd sdist_venv
python -c "import fwdpy11;print(fwdpy11.__version__)"
deactivate
rm -rf sdist_venv
# - name: Install wheel and test
# run: |
# python -VV
# # pip install minimal dependencies
# pip install --upgrade pip
# pip install wheel
# pip install -r requirements/wheel_building_workflow.txt
# # delete the source dir to prevent pip from mistaking it for
# # the package
# rm -rf fwdpy11
# # Install the local wheel
# pip install fwdpy11 --no-deps --no-index --pre --only-binary fwdpy11 -f .
# python -c "import fwdpy11;print(fwdpy11.__version__)"
macOS_test:
name: Test macOS/x86 wheels
needs: ['macOS_wheel']
runs-on: macos-latest
strategy:
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
- name: Download wheels
uses: actions/download-artifact@v3.0.2
with:
name: macOS-wheel-${{ matrix.python }}
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: ls
run: |
ls -lhrt
- name: Install wheel and test
run: |
python -VV
# pip install minimal dependencies
pip install --upgrade pip
pip install wheel
pip install -r requirements/wheel_building_workflow.txt
# delete the source dir to prevent pip from mistaking it for
# the package
rm -rf fwdpy11
# Install the local wheel
pip install fwdpy11 --no-deps --no-index --pre --only-binary fwdpy11 -f .
python -c "import fwdpy11;print(fwdpy11.__version__)"
upload_to_PyPI:
name: Upload to PyPI
runs-on: ubuntu-latest
needs: ['macOS_test', 'manylinux2_28', 'manylinux2_28_test']
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Download all
uses: actions/download-artifact@v3.0.2
- name: Move to dist
run: |
mkdir dist
cp */*.{whl,gz} dist/.
- name: Publish distribution to PRODUCTION PyPI
if: github.event_name == 'release'
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_UPLOAD }}