ci: modernize release pipeline#24
Merged
Merged
Conversation
22d5da5 to
0e52e17
Compare
Drop retired runners and EOL centos:7. Build Linux in an almalinux:8 container (glibc 2.28), the oldest base that still installs PyQt6 wheels; mac on macos-15, windows on windows-2022. Signed-off-by: Huang Rui <vowstar@gmail.com>
0e52e17 to
15fc276
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Modernize the tag-triggered release workflow and drop retired runners.
Background:
release.ymlandrelease_centos7.ymlpinned retiredrunners (ubuntu-18.04/20.04, macos-11, windows-2019) and an EOL
centos:7container. After the PyQt5 to PyQt6 migration (#23) thecentos:7 path can no longer build at all: PyQt6 wheels are
manylinux_2_28 (glibc 2.28) and need Python >= 3.9, while centos:7 is
glibc 2.17 / Python 3.6.
Changes:
release_centos7.yml.release.ymlas three per-OS jobs (no retired runners):oldest base that still installs PyQt6 wheels, so the binary keeps
maximum compatibility; produces tar.xz + AppImage.
skips the upload (guarded by the tag check), so the pipeline can be
validated without cutting a real release.
Note: release.yml is tag-triggered, so PR CI does not exercise it.
Validate with a manual workflow_dispatch run on this branch before
merging. Recommended to merge after #23.