-
Notifications
You must be signed in to change notification settings - Fork 6
217 lines (198 loc) · 6.19 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
name: Build, test, and deploy, wheels
on:
schedule:
- cron: "0 0 1 * *"
release:
types: [created]
pull_request:
branches: [main, dev]
jobs:
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Build sdist
shell: bash
run: |
python -m pip install --upgrade pip build
python -m build -s .
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist
macos-wheels:
name: Build and test macOS wheels
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust: [1.62.1]
os: [macos-14, macos-13]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Install cbindgen
uses: baptiste0928/cargo-install@v3
with:
crate: cbindgen
version: "=0.24.3"
locked: true
cache-key: ${{ matrix.os }}
- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
- name: Upload Wheels
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-wheels
path: wheelhouse
manylinux2_28:
name: Build and test Linux wheels
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
- name: Upload Wheels
uses: actions/upload-artifact@v4
with:
name: linux-wheels
path: wheelhouse
manylinux2_28_test:
name: Build package from source dist
runs-on: ubuntu-latest
needs: ['build_sdist']
strategy:
matrix:
python: [3.9, "3.10", "3.11", "3.12"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v4
- name: Download sdist
uses: actions/download-artifact@v4.1.8
with:
name: sdist
- name: Set up Python
uses: actions/setup-python@v5
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
# Test that wheels build in the docker cibuildwheel workflow
# can be installed on Ubuntu Linux, which is a different distro.
manylinux2_28_test_install_wheel:
name: Install the wheel on github runner
runs-on: ubuntu-latest
needs: ['manylinux2_28']
strategy:
matrix:
python: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Download sdist
uses: actions/download-artifact@v4.1.8
with:
name: linux-wheels
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: install into venv
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --no-cache-dir --only-binary=fwdpy11 --pre --find-links . fwdpy11
python -m fwdpy11 --includes
python -c "import fwdpy11;print(fwdpy11.__version__)"
python -c "import fwdpy11;print(fwdpy11.__file__)"
macos_test_install_wheel:
name: Install the wheel on github runner
runs-on: ${{ matrix.os }}
needs: ['macos-wheels']
strategy:
matrix:
python: ["3.11", "3.12"]
os: [macos-14, macos-13]
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Download sdist
uses: actions/download-artifact@v4.1.8
with:
name: ${{ matrix.os }}-wheels
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: install into venv
run: |
python -m venv venv
source venv/bin/activate
python -m pip install --no-cache-dir --only-binary=fwdpy11 --pre --find-links . fwdpy11
python -m fwdpy11 --includes
python -c "import fwdpy11;print(fwdpy11.__version__)"
python -c "import fwdpy11;print(fwdpy11.__file__)"
upload_to_PyPI:
name: Upload to PyPI
runs-on: ubuntu-latest
needs: ['manylinux2_28', 'manylinux2_28_test', 'manylinux2_28_test_install_wheel', 'macos_test_install_wheel']
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Download all
uses: actions/download-artifact@v4.1.8
- 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 }}