Add support for libicu73-76 for newer Debian/Ubuntu versions#4098
Merged
TingluoHuang merged 1 commit intoactions:mainfrom Nov 12, 2025
Merged
Conversation
- Adds libicu76 for Debian 13 (Trixie) - Adds libicu75, libicu74, libicu73 for future compatibility - Fixes issue where runner fails to install dependencies on Debian 13
8f48bfe to
abd0e19
Compare
TingluoHuang
approved these changes
Nov 12, 2025
alinetskyi
pushed a commit
to CoreumFoundation/runner
that referenced
this pull request
Jan 26, 2026
alinetskyi
pushed a commit
to CoreumFoundation/runner
that referenced
this pull request
Jan 26, 2026
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.
Description
Adds support for newer libicu versions (73-76) to enable runner installation on Debian 13 (Trixie) and future Debian/Ubuntu releases.
Related Issue
Fixes #4097
Changes
apt_get_with_fallbacksfunction insrc/Misc/externals.shProblem
The runner's dependency installation script fails on Debian 13 (Trixie) because it doesn't recognize libicu76, which is the version shipped with Debian 13.
Solution
The
apt_get_with_fallbacksfunction tries each libicu version in order until it finds one available on the system. By adding the newer versions at the beginning of the list, the script can now successfully install dependencies on Debian 13 while maintaining compatibility with older distributions.Testing