-
Notifications
You must be signed in to change notification settings - Fork 16
191 lines (163 loc) · 5.42 KB
/
release.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
name: Build + Release Wheels
on:
push:
# tags:
# - 'v?[0-9]+.[0-9]+.[0-9]+'
# - 'v?[0-9]+.[0-9]+.[0-9]+.[0-9]+'
workflow_dispatch:
inputs:
llvm_version:
description: "LLVM version to build"
required: false
default: ""
wheel_version:
description: "Version of the wheel packaging (appended to LLVM version)"
required: false
default: "0"
skip_emulation:
description: "Skip builds with targets requiring specified emulation (qemu / none)"
required: true
default: qemu
deploy_to_testpypi:
description: "Whether the build should be deployed to test.pypi.org instead regular PyPI"
required: true
default: false
jobs:
build-wheels:
name: "${{ matrix.os }} :: ${{ matrix.platform }}-${{ matrix.arch }}"
runs-on: ${{ matrix.os }}
strategy:
matrix:
# emulated linux: generate 6 matrix combinations with qemu on ubuntu:
arch: ["aarch64", "ppc64le", "s390x"]
platform: ["manylinux", "musllinux"]
os: [ubuntu-latest]
emulation: ["qemu"]
exclude:
# conditionally skip jobs requiring emulation:
- os: ubuntu-latest
emulation: ${{ github.event.inputs.skip_emulation }}
include:
# linux
- os: ubuntu-latest
platform: "manylinux"
arch: "x86_64"
- os: ubuntu-latest
platform: "manylinux"
arch: "i686"
- os: ubuntu-latest
platform: "musllinux"
arch: "x86_64"
- os: ubuntu-latest
platform: "musllinux"
arch: "i686"
# windows
- os: windows-latest
platform: "win"
arch: "AMD64"
- os: windows-latest
platform: "win"
arch: "x86"
# macos
- os: macos-13
platform: "macos"
arch: "x86_64"
- os: macos-latest
platform: "macos"
arch: "arm64"
steps:
- uses: actions/checkout@v4
- name: Support long paths on Windows
if: runner.os == 'Windows'
run: git config --system core.longpaths true
- name: Set up msvc on Windows
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Override LLVM version (${{ github.event.inputs.llvm_version }})
if: github.event.inputs.llvm_version
run: |
echo "${{ github.event.inputs.llvm_version }}.${{ github.event.inputs.wheel_version }}" > clang-format_version.txt
cat clang-format_version.txt
- name: Set up QEMU
uses: docker/[email protected]
if: runner.os == 'Linux' && matrix.emulation == 'qemu'
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: "${{ matrix.arch }}"
# restrict to a single Python version as wheel does not depend on Python:
CIBW_BUILD: "cp311-${{ matrix.platform }}*"
- uses: actions/upload-artifact@v4
with:
name: artifacts-wheels-${{ matrix.platform }}-${{ matrix.arch }}
path: ./wheelhouse/*.whl
build-sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Override LLVM version (${{ github.event.inputs.llvm_version }})
if: github.event.inputs.llvm_version
run: |
echo "${{ github.event.inputs.llvm_version }}.${{ github.event.inputs.wheel_version }}" > clang-format_version.txt
cat clang-format_version.txt
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: artifacts-sdist
path: dist/*.tar.gz
test-sdist:
name: Test build from source distribution
needs: [build-sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'
- uses: actions/download-artifact@v4
with:
name: artifacts-sdist
path: sdist
- name: Install from SDist
run:
pip install sdist/*.tar.gz
- name: Install test requirements
run:
python -m pip install -r requirements-dev.txt
- name: Set up Git identity
run: |
git config --global user.name Name
git config --global user.email [email protected]
- name: Run test suite
run:
python -m pytest
# upload_pypi:
# name: Upload to PyPI
# needs: [build-wheels, build-sdist, test-sdist]
# runs-on: ubuntu-latest
# permissions:
# id-token: write
# contents: write
# if: github.repository_owner == 'ssciwr'
# steps:
# - uses: actions/download-artifact@v4
# with:
# pattern: artifacts-*
# merge-multiple: true
# path: dist
# - name: Upload to PyPI
# uses: pypa/[email protected]
# if: github.event.inputs.deploy_to_testpypi == 'false'
# - name: Upload to TestPyPI
# uses: pypa/[email protected]
# if: github.event.inputs.deploy_to_testpypi == 'true'
# with:
# repository-url: https://test.pypi.org/legacy/
# - name: GitHub release for tagged commits
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')