-
Notifications
You must be signed in to change notification settings - Fork 0
221 lines (189 loc) · 6.67 KB
/
Copy pathpython-bindings.yml
File metadata and controls
221 lines (189 loc) · 6.67 KB
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
name: Python Bindings
on:
push:
branches: [main]
paths:
- '.github/workflows/python-bindings.yml'
- 'bindings/python/**'
- 'cmake/**'
- 'CMakeLists.txt'
- 'conanfile.py'
- 'include/**'
- 'src/**'
pull_request:
branches: [main]
paths:
- '.github/workflows/python-bindings.yml'
- 'bindings/python/**'
- 'cmake/**'
- 'CMakeLists.txt'
- 'conanfile.py'
- 'include/**'
- 'src/**'
release:
types: [published]
permissions:
contents: write
id-token: write
env:
CIBUILDWHEEL_VERSION: "2.23.4"
jobs:
test:
name: Test on ${{ matrix.os }} / Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
python: '3.11'
- os: ubuntu-latest
python: '3.12'
- os: ubuntu-latest
python: '3.13'
- os: macos-latest
python: '3.12'
- os: windows-latest
python: '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install build tools
run: pip install conan ninja
- name: Install Conan dependencies (Unix)
if: runner.os != 'Windows'
run: |
conan profile detect
conan install . --output-folder=buildDir --build=missing --build="antlr4-cppruntime/*" -s build_type=Release -s compiler.cppstd=20 -o with_tests=False
- name: Install LLVM (Windows)
if: runner.os == 'Windows'
run: |
choco install llvm --version=20.1.4 --force
echo "C:\Program Files\LLVM\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: pwsh
- name: Install Conan dependencies (Windows)
if: runner.os == 'Windows'
run: pwsh scripts/install_conan_windows.ps1 Release -o with_tests=False
- name: Install zyxdb (Unix)
if: runner.os != 'Windows'
run: CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=$PWD/buildDir/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release" pip install "bindings/python[test]"
- name: Install zyxdb (Windows)
if: runner.os == 'Windows'
run: |
$toolchain = "$PWD\buildDir\conan_toolchain.cmake" -replace '\\', '/'
$env:CC = "clang-cl"
$env:CXX = "clang-cl"
$env:CMAKE_ARGS = "-DCMAKE_TOOLCHAIN_FILE=$toolchain -DCMAKE_BUILD_TYPE=Release"
pip install "bindings/python[test]"
shell: pwsh
- name: Run tests
run: |
cd bindings/python
python -m pytest tests/ -v
build-wheels:
name: Build wheels on ${{ matrix.os }}
needs: test
if: github.event_name == 'release'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install cibuildwheel
# Keep the wheel builder pinned so Python patch installers do not change
# underneath release jobs before CPython's Windows NuGet package is live.
run: pip install "cibuildwheel==${{ env.CIBUILDWHEEL_VERSION }}"
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse bindings/python
env:
CIBW_BUILD: cp310-* cp311-* cp312-* cp313-*
CIBW_BUILD_FRONTEND: "build"
CIBW_SKIP: '*-musllinux_* *-win32'
CIBW_BEFORE_ALL_LINUX: >
pip install conan ninja &&
conan profile detect &&
conan install . --output-folder=/project/buildDir --build=missing --build="b2/*" --build="antlr4-cppruntime/*" -s build_type=Release -s compiler.cppstd=20 -o with_tests=False
CIBW_BEFORE_ALL_MACOS: >
pip install conan ninja &&
conan profile detect &&
conan install . --output-folder=/tmp/conan-deps --build=missing --build="antlr4-cppruntime/*" -s build_type=Release -s compiler.cppstd=20 -o with_tests=False
CIBW_BEFORE_ALL_WINDOWS: >
pip install conan ninja &&
set "CONAN_OUTPUT_DIR=C:\conan-deps" &&
choco install llvm --version=20.1.4 --force &&
pwsh scripts/install_conan_windows.ps1 Release -o with_tests=False
CIBW_ENVIRONMENT_LINUX: CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=/project/buildDir/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release"
CIBW_ENVIRONMENT_MACOS: CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=/tmp/conan-deps/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release" MACOSX_DEPLOYMENT_TARGET=13.3
CIBW_ENVIRONMENT_WINDOWS: CC=clang-cl CXX=clang-cl CMAKE_ARGS="-DCMAKE_TOOLCHAIN_FILE=C:/conan-deps/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release"
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
build-sdist:
name: Build sdist
needs: test
if: github.event_name == 'release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build sdist
run: |
pip install build
python -m build --sdist bindings/python --outdir dist/
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
publish-pypi:
name: Publish to PyPI
needs: [build-wheels, build-sdist]
runs-on: ubuntu-latest
environment: pypi
steps:
- name: Download wheel artifacts
uses: actions/download-artifact@v4
with:
pattern: wheels-*
path: dist/
merge-multiple: true
- name: Download sdist artifact
uses: actions/download-artifact@v4
with:
name: sdist
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
upload-release-assets:
name: Upload release assets
needs: [build-wheels, build-sdist]
runs-on: ubuntu-latest
steps:
- name: Download wheel artifacts
uses: actions/download-artifact@v4
with:
pattern: wheels-*
path: dist/
merge-multiple: true
- name: Download sdist artifact
uses: actions/download-artifact@v4
with:
name: sdist
path: dist/
- name: Upload assets to GitHub Release
uses: softprops/action-gh-release@v2
with:
files: dist/*