fix(ci): restore GLIBC 2.35 compatibility for deb packages - #3955
Open
vjnrv wants to merge 1 commit into
Open
Conversation
Signed-off-by: Pedro Junior <vjuniorv@gmail.com>
vjnrv
force-pushed
the
feat/glibc-compat-ubuntu-22-04-pr
branch
from
July 31, 2026 17:04
d56f2ee to
827aa34
Compare
| -o Acquire::http::Timeout=30 \ | ||
| -o Acquire::https::Timeout=30 | ||
| apt-get install -y --no-install-recommends \ | ||
| -o Acquire::Retries=3 \ |
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.
Summary
PR #3602 resolved the rendering-related
colrv1_configure_skpaintcrash (issues #2548 and #2982) on newer host distributions (like Ubuntu 24.04+ and Fedora 40+) by bumping the Linux AppImage build container toubuntu:24.04. This ensured that the bundled WebKitGTK in the AppImage matched theFT_ColorStopIteratorlayout changes introduced in FreeType 2.13+.However, upgrading the build container to
ubuntu:24.04had the unintended side effect of raising the minimum GLIBC floor of the entire build pipeline to 2.39. As a result, the generated.debpackages (which were compiled inside the same container) now requireGLIBC_2.38or higher, breaking installations on stable distributions such as Ubuntu 22.04 LTS (GLIBC 2.35) and Debian 12 (GLIBC 2.36).Because
.debpackages do not bundle WebKitGTK (they use the system'slibwebkit2gtkpackage), they are completely unaffected by the FreeType struct mismatch. The system-provided WebKitGTK is already compiled against the system-provided FreeType layout. Thus, there is no technical requirement to compile.debpackages on Ubuntu 24.04.By splitting the Linux build environments, we can restore first-class support for Ubuntu 22.04 LTS and Debian 12 via the
.debpackage while fully preserving the AppImage fixes for newer hosts.Solution
.github/workflows/linux-canary.yml: Refactored thebuildjob to use astrategy.matrixseparating target platforms.AppImageis built inubuntu:24.04to maintain FreeType 2.13+ layout compatibility.Debianis built inubuntu:22.04to restore the GLIBC 2.35 floor.tauri build,fix-appimage.shgating, artifact collection, and uploading) to be matrix-aware..github/workflows/release.yml:release-linuxjob to only buildappimageonubuntu:24.04.release-linux-debjob running onubuntu:22.04to compile thedebpackage only.assemble-manifestjob to wait for bothrelease-linuxandrelease-linux-debbefore completing the release draft.References
Validation
AppImagematrix job successfully compiled the AppImage package onubuntu:24.04.Debianmatrix job successfully compiled the.debpackage onubuntu:22.04..debpackage was downloaded and verified to install and launch without GLIBC errors on an Ubuntu 22.04 LTS system (GLIBC 2.35).