-
Notifications
You must be signed in to change notification settings - Fork 0
215 lines (180 loc) · 6.52 KB
/
pip.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
# Relevant GHA docs links:
# https://docs.github.com/en/actions/using-jobs/running-jobs-in-a-container
# https://docs.github.com/en/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions#upgrading-a-workflow-that-accesses-ghcrio
name: Build PyPI package
on:
push:
branches: [ main ]
release:
types: [ created ]
concurrency:
group: '${{ github.workflow }}-${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
env:
LLVM_VER: 15.0.1
permissions:
contents: read # to fetch code (actions/checkout)
packages: read # to fetch packages (docker)
jobs:
pip-linux:
name: Package Halide Python bindings
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
arch: [ x86_64, aarch64 ]
steps:
- uses: actions/[email protected]
- name: Log in to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/[email protected]
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS_LINUX: "${{ matrix.arch }}"
CIBW_BUILD: "cp38-manylinux* cp39-manylinux* cp310-manylinux*"
CIBW_MANYLINUX_X86_64_IMAGE: ghcr.io/halide/manylinux2014_x86_64-llvm:${{ env.LLVM_VER }}
# CIBW_MANYLINUX_I686_IMAGE: ghcr.io/halide/manylinux2014_i686-llvm:${{ env.LLVM_VER }}
CIBW_MANYLINUX_AARCH64_IMAGE: ghcr.io/halide/manylinux2014_aarch64-llvm:${{ env.LLVM_VER }}
CIBW_BEFORE_ALL_LINUX: >
cmake -G Ninja -S . -B build
-DCMAKE_BUILD_TYPE=Release -DWITH_DOCS=NO -DWITH_PYTHON_BINDINGS=NO -DWITH_TESTS=NO
-DWITH_TUTORIALS=NO -DWITH_UTILS=NO -DWITH_PYTHON_STUBS=NO &&
cmake --build build --target install
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
pip-other:
name: Package Halide Python bindings
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- runner: windows-latest
pytag: win_amd64
arch: x64
- runner: macos-latest
pytag: macosx_universal2
arch: x86_64;arm64
steps:
- uses: actions/[email protected]
- name: Cache LLVM build folder
id: cache-llvm
uses: actions/[email protected]
with:
path: local-llvm
key: llvmorg-${{ env.LLVM_VER }}-${{ runner.os }}
- uses: ilammy/msvc-dev-cmd@v1
- uses: lukka/get-cmake@latest
- uses: actions/[email protected]
if: steps.cache-llvm.outputs.cache-hit != 'true'
with:
path: llvm-src
repository: llvm/llvm-project
ref: llvmorg-${{ env.LLVM_VER }}
- name: Configure LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: >
cmake -G Ninja -S llvm-src/llvm -B llvm-build
-DCMAKE_BUILD_TYPE=Release
"-DCMAKE_OSX_ARCHITECTURES=arm64;x86_64"
"-DLLVM_TARGETS_TO_BUILD=X86;ARM;NVPTX;AArch64;Mips;Hexagon;WebAssembly"
"-DLLVM_ENABLE_PROJECTS=clang;lld"
-DLLVM_ENABLE_ASSERTIONS=ON
-DLLVM_ENABLE_RTTI=ON
-DLLVM_ENABLE_EH=ON
-DLLVM_ENABLE_LIBXML2=OFF
-DLLVM_ENABLE_TERMINFO=OFF
-DLLVM_ENABLE_ZSTD=OFF
-DLLVM_ENABLE_ZLIB=OFF
-DLLVM_ENABLE_OCAMLDOC=OFF
-DLLVM_ENABLE_BINDINGS=OFF
-DLLVM_ENABLE_IDE=OFF
- name: Build LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: cmake --build llvm-build
- name: Install LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: cmake --install llvm-build --prefix local-llvm
# Remove the LLVM source tree after building it, otherwise we can
# run out of local space while building halide
- name: Clean LLVM Source
if: steps.cache-llvm.outputs.cache-hit != 'true'
shell: bash
run: rm -rf llvm-src
- name: Configure Halide
if: runner.os == 'Windows'
run: >
cmake -G "Visual Studio 17 2022" -T ClangCL -A "${{ matrix.arch }}" -S . -B halide-build
-DWITH_DOCS=NO
-DWITH_PYTHON_BINDINGS=NO
-DWITH_TESTS=NO
-DWITH_TUTORIALS=NO
-DWITH_UTILS=NO
-DWITH_PYTHON_STUBS=NO
-DLLVM_DIR=${{ github.workspace }}/local-llvm/lib/cmake/llvm
- name: Configure Halide
if: runner.os != 'Windows'
run: >
cmake -G Ninja -S . -B halide-build
-DCMAKE_BUILD_TYPE=Release
"-DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}"
-DWITH_DOCS=NO
-DWITH_PYTHON_BINDINGS=NO
-DWITH_TESTS=NO
-DWITH_TUTORIALS=NO
-DWITH_UTILS=NO
-DWITH_PYTHON_STUBS=NO
-DLLVM_DIR=${{ github.workspace }}/local-llvm/lib/cmake/llvm
- name: Build Halide
run: cmake --build halide-build --config Release
- name: Install Halide
run: cmake --install halide-build --config Release --prefix local-halide
- name: Build wheels
uses: pypa/[email protected]
env:
CMAKE_PREFIX_PATH: ${{ github.workspace }}/local-halide
CIBW_BUILD: "cp38-${{ matrix.pytag }} cp39-${{ matrix.pytag }} cp310-${{ matrix.pytag }}"
CIBW_ARCHS_MACOS: "universal2"
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
pip-sdist:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/*.tar.gz
publish:
name: Publish on PyPI
needs: [ pip-linux, pip-other, pip-sdist ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- uses: pypa/[email protected]
if: github.event_name == 'release' && github.event.action == 'published'
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}