-
Notifications
You must be signed in to change notification settings - Fork 21
156 lines (133 loc) · 4.14 KB
/
release.yml
File metadata and controls
156 lines (133 loc) · 4.14 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
name: Build release
on:
push:
branches:
- master
tags:
- 'v*'
pull_request:
jobs:
cibuildwheel_py38plus:
name: Build python 3.8+ ${{ matrix.manylinux_image }} wheels
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04 ]
python: ["3.14"]
manylinux_image: [ manylinux2014, manylinux_2_28 ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: ${{ matrix.python }}
- name: Install packaging tools
run: |
python -m pip install --upgrade pip setuptools importlib_metadata wheel
- name: Install cibuildwheel
run: |
python -m pip install --upgrade pip cibuildwheel
- name: Set up QEMU
# For cross-architecture builds
# https://cibuildwheel.readthedocs.io/en/stable/faq/#emulation
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build binary wheels
env:
CIBW_SKIP: ${{ matrix.cibw_skip }}
CIBW_BUILD_VERBOSITY: 1
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }}
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.manylinux_image }}
CIBW_ARCHS_LINUX: "auto aarch64"
run: python -m cibuildwheel
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.manylinux_image }}-${{ matrix.python }}-${{ matrix.os }}
path: ./wheelhouse/*.whl
build_macos_wheels:
name: Build macos wheels (cross-compiles arm64)
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.14"
- name: Install cibuildwheel
run: |
python -m pip install --upgrade pip cibuildwheel
- name: Build binary wheels
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_ARCHS_MACOS: "x86_64 arm64"
run: python -m cibuildwheel
- uses: actions/upload-artifact@v4
with:
name: macos
path: ./wheelhouse/*.whl
build_pure_wheels:
name: Build pure python wheels
runs-on: ubuntu-24.04
strategy:
matrix:
python: ["3.14"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: ${{ matrix.python }}
- name: Install packaging tools
run: |
python -m pip install --upgrade pip build
- name: Build Python pure Python wheel
env:
SCOUT_DISABLE_EXTENSIONS: "1"
run: python -m build --wheel
- uses: actions/upload-artifact@v4
with:
name: pp${{ matrix.python }}
path: dist/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.14"
- name: Install packaging tools
run: |
python -m pip install --upgrade pip build
- name: Build sdist
run: python -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz
upload_pypi:
needs: [cibuildwheel_py38plus, build_pure_wheels, build_sdist, build_macos_wheels]
runs-on: ubuntu-24.04
permissions:
id-token: write
steps:
- name: Download distributions for publishing.
uses: actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- name: Publish distributions to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_TWINE_PASSWORD }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Publish distributions to PyPI
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__