-
Notifications
You must be signed in to change notification settings - Fork 9
167 lines (138 loc) · 4.8 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
name: Build Python Wheels for Release
on:
workflow_dispatch:
jobs:
build_windows_wheels:
name: Build wheels on windows
runs-on: windows-latest
strategy:
matrix:
python: [cp37, cp38, cp39, cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Git config for fetching pull requests
run: |
git config --global --add remote.origin.fetch +refs/pull/*/merge:refs/remotes/pull/*
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python }}-win*
CIBW_ENVIRONMENT: >
REGOCPP_C_WRAPPER_REPO=https://github.com/${{github.repository}}
REGOCPP_C_WRAPPER_TAG=${{github.sha}}
with:
package-dir: ${{github.workspace}}/wrappers/python/
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_macos_wheels:
name: Build wheels on mac
runs-on: macos-latest
strategy:
matrix:
python: [cp39, cp310, cp311, cp312, pp39, pp310]
steps:
- uses: actions/checkout@v4
- name: Git config for fetching pull requests
run: |
git config --global --add remote.origin.fetch +refs/pull/*/merge:refs/remotes/pull/*
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python }}-macosx*
CIBW_ARCHS_MACOS: x86_64
CIBW_ENVIRONMENT_MACOS : >
MACOSX_DEPLOYMENT_TARGET=10.15
CC=gcc-11
CXX=g++-11
REGOCPP_C_WRAPPER_REPO=https://github.com/${{github.repository}}
REGOCPP_C_WRAPPER_TAG=${{github.sha}}
with:
package-dir: ${{github.workspace}}/wrappers/python/
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_apple_silicon_wheels:
name: Build wheels on Apple Silicon
runs-on: macos-latest-xlarge
strategy:
matrix:
python: [cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: python
with:
python-version: "3.10 - 3.12"
update-environment: false
- name: Install pipx
run: |
brew install pipx
pipx ensurepath
- name: Git config for fetching pull requests
run: |
git config --global --add remote.origin.fetch +refs/pull/*/merge:refs/remotes/pull/*
- name: Fix path
run: |
export PATH=$(python3 -m site --user-base)/bin:$PATH
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python }}-macosx*
CIBW_ARCHS_MACOS: arm64
CIBW_ENVIRONMENT_MACOS : >
MACOSX_DEPLOYMENT_TARGET=10.15
REGOCPP_C_WRAPPER_REPO=https://github.com/${{github.repository}}
REGOCPP_C_WRAPPER_TAG=${{github.sha}}
with:
package-dir: ${{github.workspace}}/wrappers/python/
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_manylinux_wheels:
name: Build wheels on manylinux
runs-on: ubuntu-latest
strategy:
matrix:
python: [cp37, cp38, cp39, cp310, cp311, cp312, pp39, pp310]
steps:
- uses: actions/checkout@v4
- name: Git config for fetching pull requests
run: |
git config --global --add remote.origin.fetch +refs/pull/*/merge:refs/remotes/pull/*
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python }}-manylinux*
CIBW_BEFORE_ALL: yum makecache && yum -y install devtoolset-10-libatomic-devel
CIBW_ENVIRONMENT: >
REGOCPP_C_WRAPPER_REPO=https://github.com/${{github.repository}}
REGOCPP_C_WRAPPER_TAG=${{github.sha}}
with:
package-dir: ${{github.workspace}}/wrappers/python/
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
build_musllinux_wheels:
name: Build wheels on musllinux
runs-on: ubuntu-latest
strategy:
matrix:
python: [cp37, cp38, cp39, cp310, cp311, cp312]
steps:
- uses: actions/checkout@v4
- name: Git config for fetching pull requests
run: |
git config --global --add remote.origin.fetch +refs/pull/*/merge:refs/remotes/pull/*
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.python }}-musllinux*
CIBW_ENVIRONMENT: >
REGOCPP_C_WRAPPER_REPO=https://github.com/${{github.repository}}
REGOCPP_C_WRAPPER_TAG=${{github.sha}}
with:
package-dir: ${{github.workspace}}/wrappers/python/
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl