-
Notifications
You must be signed in to change notification settings - Fork 2
345 lines (301 loc) · 13.1 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
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
---
name: Release
on: # yamllint disable-line rule:truthy
push:
branches:
- master
workflow_dispatch:
pull_request:
jobs:
# Shared tag & version number info ----------------------
get-tag-xor-dev-version:
name: Get tags and version numbers
runs-on: ubuntu-latest
outputs:
tag: ${{ steps.detect-new-version-tag.outputs.tag }}
dev-version: ${{ steps.bump-dev-version.outputs.version }}
steps:
- name: Check out the repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Install Poetry
run: |
pip install --constraint=.github/workflows/constraints.txt poetry
poetry --version
- name: Check if there is a parent commit
id: check-parent-commit
run: |
echo "sha=$(git rev-parse --verify --quiet HEAD^)" >> $GITHUB_OUTPUT
- name: Detect new version tag
id: detect-new-version-tag
if: "steps.check-parent-commit.outputs.sha"
run: |
BRANCH_NAME=$(git rev-parse --abbrev-ref HEAD)
git checkout HEAD~
PARENT_COMMIT_VER=$(make get-project-version-number)
git checkout "${BRANCH_NAME}"
CURRENT_COMMIT_VER=$(make get-project-version-number)
if [[ "${PARENT_COMMIT_VER}" != "${CURRENT_COMMIT_VER}" ]]; then
echo "tag=${CURRENT_COMMIT_VER}" >> $GITHUB_OUTPUT
fi
- name: Bump version for developmental release
id: bump-dev-version
if: "! steps.detect-new-version-tag.outputs.tag"
run: |
poetry version patch &&
VERSION=$(make get-project-version-number) &&
DEV_VERSION="${VERSION}.dev.$(date +%s)" &&
poetry version "${DEV_VERSION}" &&
echo "version=${DEV_VERSION}" >> $GITHUB_OUTPUT
# Package build ----------------------
package-build:
strategy:
matrix:
# Parallelize all MacOS CPython wheel builds
os: ["macos-latest"]
cibw_archs_macos: ["x86_64", "universal2", "arm64"]
# For broader MacOS major version compatibility,
# build all wheels against the below deployment targets
macosx_deployment_target: ["10.9", "11.0", "12.0"]
include:
# Parallelize all Linux aarch64 CPython wheel builds across major versions
# 3.7
- os: "ubuntu-latest"
cibw_archs_linux: "aarch64"
cibw_skip_linux_aarch64_cpython_versions: "cp3{8,9,10,11}-*"
# 3.8
- os: "ubuntu-latest"
cibw_archs_linux: "aarch64"
cibw_skip_linux_aarch64_cpython_versions: "cp3{7,9,10,11}-*"
# 3.9
- os: "ubuntu-latest"
cibw_archs_linux: "aarch64"
cibw_skip_linux_aarch64_cpython_versions: "cp3{7,8,10,11}-*"
# 3.10
- os: "ubuntu-latest"
cibw_archs_linux: "aarch64"
cibw_skip_linux_aarch64_cpython_versions: "cp3{7,8,9,11}-*"
# 3.11
- os: "ubuntu-latest"
cibw_archs_linux: "aarch64"
cibw_skip_linux_aarch64_cpython_versions: "cp3{7,8,9,10}-*"
# All Linux x86_64 CPython wheel builds
- os: "ubuntu-latest"
cibw_archs_linux: "auto64"
# All Windows AMD64 CPython wheel builds
- os: "windows-2019"
cibw_archs_windows: "auto64"
name: Package build via CI buildwheel
runs-on: ${{ matrix.os }}
needs: get-tag-xor-dev-version
outputs:
is-test-package: ${{ steps.use-dev-version-for-testing.outputs.is_testing }}
package-version: ${{ steps.log-package-version.outputs.version }}
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Install Poetry
run: |
pip install --constraint=.github/workflows/constraints.txt poetry
poetry --version
# Update the project version number to the dev version that was
# generated upstream (only used in non-release builds; else project
# already set to the correct version number)
- name: Use dev project version for testing
id: use-dev-version-for-testing
if: "needs.get-tag-xor-dev-version.outputs.dev-version"
run: |
VERSION="${{ needs.get-tag-xor-dev-version.outputs.dev-version }}"
poetry version "${VERSION}"
echo "is_testing=true" >> $GITHUB_OUTPUT
shell: bash
- name: Log package version
id: log-package-version
run: |
VERSION=$(make get-project-version-number)
echo "version=${VERSION}" >> $GITHUB_OUTPUT
shell: bash
- name: Setup QEMU
if: ${{ runner.os == 'Linux' }}
uses: docker/setup-qemu-action@v2
- name: Log wheel filename-safe MacOS deployment target identifier
if: "startsWith(matrix.os, 'macos')"
run: |
echo "macosx_deployment_target_wheel_string=$(echo ${{ matrix.macosx_deployment_target }} | sed 's/\./_/g')" >> $GITHUB_ENV
- name: Build wheels
uses: pypa/cibuildwheel@v2.12.0
env:
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.12"
# Disable building
# - PyPy wheels on all platforms due to orjson maturin wheel build incompatibility
# see: https://github.com/ijl/orjson/issues/177
# - redundant Linux aarch64 builds (already handled by other jobs)
CIBW_SKIP: "pp* ${{ matrix.cibw_skip_linux_aarch64_cpython_versions }}"
# On a Windows runner only build 64-bit wheels
CIBW_ARCHS_WINDOWS: ${{ matrix.cibw_archs_windows }}
# Install rust on Linux runners for orjson wheel builds which use maturin
# https://github.com/Daggy1234/polaroid/blob/ace9a6eee74ee9c30edd0d350d65e2f3b4d8430c/.github/workflows/publish.yml#L29
CIBW_BEFORE_ALL_LINUX: >
curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y &&
yum install -y openssl-devel || apk add openssl-dev
CIBW_ENVIRONMENT_LINUX: >
PATH="$PATH:$HOME/.cargo/bin"
CARGO_NET_GIT_FETCH_WITH_CLI="true"
# Pass orjson build args to maturin
#
# Note: this is global to *all* maturin wheel builds which may be
# problematic if, in the future, multiple build dependencies use
# maturin and must be built from source
MATURIN_PEP517_ARGS: "--strip --out dist --features=unstable-simd,yyjson"
# On a Linux Intel runner with qemu installed,
# build 64-bit Intel and ARM wheels
CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux }}
# On MacOS, explicitly specify (a) target architectures for correct
# wheel builds (metadata & file names use x86_64 by default otherwise)
# and (b) minimum target OS versions for broader compatibility with
# different OS versions
CIBW_ENVIRONMENT_MACOS: >
MACOSX_DEPLOYMENT_TARGET="${{ matrix.macosx_deployment_target }}"
CMAKE_OSX_DEPLOYMENT_TARGET="${{ matrix.macosx_deployment_target }}"
CMAKE_OSX_ARCHITECTURES="${{ matrix.cibw_archs_macos }}"
# Build `universal2` and `arm64` wheels on an Intel runner.
# Note that the `arm64` wheel and the `arm64` part of the `universal2`
# wheel cannot be tested in this configuration.
CIBW_ARCHS_MACOS: ${{ matrix.cibw_archs_macos }}
CIBW_BUILD_VERBOSITY_MACOS: 1
# Skip trying to test arm64 builds on Intel Macs
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"
# Correctly rename MacOS wheels to fix user installs (due to bug w/ cibuildwheel)
# - arm64/universal2 builds are incorrectly given the x86_64 suffix
# - MACOSX_DEPLOYMENT_TARGET builds are incorrectly given the default
# 10_16 & 11_0 platform specifiers
CIBW_REPAIR_WHEEL_COMMAND_MACOS: >
delocate-listdeps {wheel} &&
delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel} &&
find {dest_dir} -type f -name '*.whl' -exec bash -c 'mv "$1" "${1//x86_64/${{ matrix.cibw_archs_macos }}}"' bash {} \; &&
find {dest_dir} -type f -name '*.whl' -exec bash -c 'mv "$1" "${1//10_16/${{ env.macosx_deployment_target_wheel_string }}}"' bash {} \; &&
find {dest_dir} -type f -name '*.whl' -exec bash -c 'mv "$1" "${1//11_0/${{ env.macosx_deployment_target_wheel_string }}}"' bash {} \; &&
find {dest_dir} -type f -name '*.whl' -exec bash -c 'mv "$1" "${1//12_0/${{ env.macosx_deployment_target_wheel_string }}}"' bash {} \;
- name: Store the binary wheel
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: ./wheelhouse/*.whl
# PyPI/TestPyPI package upload ----------------------
pypi-packages-upload:
name: PyPI/TestPyPI package upload
runs-on: ubuntu-latest
needs:
- package-build
outputs:
package-version: ${{ needs.package-build.outputs.package-version }}
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Upgrade pip
run: |
pip install --constraint=.github/workflows/constraints.txt pip
pip --version
- name: Download the ci build wheel binary wheels
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist
- name: Publish packages on PyPI
if: "! needs.package-build.outputs.is-test-package"
uses: pypa/gh-action-pypi-publish@v1.6.4
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }} # pragma: allowlist secret
- name: Publish packages on TestPyPI
if: "needs.package-build.outputs.is-test-package"
uses: pypa/gh-action-pypi-publish@v1.6.4
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }} # pragma: allowlist secret
repository_url: https://test.pypi.org/legacy/
# Install Verification ----------------------
verify-user-install:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
name: Verify package install as user
runs-on: ${{ matrix.os }}
needs: pypi-packages-upload
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package-under-test
run: |
PYPI_PACKAGE="structlog-sentry-logger==${PACKAGE_VERSION}"
TEST_PYPI_PACKAGE="${PYPI_PACKAGE} --index-url https://test.pypi.org/simple/"
function install_test_pypi() { pip install ${TEST_PYPI_PACKAGE} --no-deps && install_pypi; }
function install_pypi() { pip install --upgrade ${PYPI_PACKAGE}; }
until (install_test_pypi || install_pypi)
do
echo "Waiting for Python Package Index to serve current package-under-test: ${PYPI_PACKAGE}"
sleep 10
done
pip list -v
env:
PACKAGE_VERSION: ${{ needs.pypi-packages-upload.outputs.package-version }}
shell: bash
- name: Run example script with both logging configurations
run: |
echo "Default output (JSON)"
python ./docs_src/pure_structlog_logging_without_sentry.py
echo "Cloud Logging compatibility mode (JSON)"
export STRUCTLOG_SENTRY_LOGGER_CLOUD_LOGGING_COMPATIBILITY_MODE_ON=
python ./docs_src/pure_structlog_logging_without_sentry.py
echo "Local development mode output (formatted) \
(with Cloud Logging compatibility mode still activated)"
export STRUCTLOG_SENTRY_LOGGER_LOCAL_DEVELOPMENT_LOGGING_MODE_ON=
python ./docs_src/pure_structlog_logging_without_sentry.py
shell: bash
# Release notes publication ----------------------
publish-release-notes:
name: Publish release notes
runs-on: ubuntu-latest
needs:
- get-tag-xor-dev-version
- verify-user-install
permissions:
pull-requests: write
contents: write
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Publish the release notes
uses: release-drafter/release-drafter@v5.22.0
with:
publish: ${{ needs.get-tag-xor-dev-version.outputs.tag != '' }}
# Annotated tag to associate with the current commit
tag: ${{ needs.get-tag-xor-dev-version.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}