Fix SDKMAN GLIBC 2.30 incompatibility on RHEL 8 family systems - #1568
Merged
Abdurrahmaan Iqbal (abdurriq) merged 6 commits intoFeb 17, 2026
Conversation
Copilot started work on behalf of
Abdurrahmaan Iqbal (abdurriq)
February 11, 2026 15:03
View session
Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions workflow test-scenarios
Fix SDKMAN GLIBC 2.30 incompatibility on RHEL 8 family systems
Feb 11, 2026
Contributor
|
Copilot started work on behalf of
Abdurrahmaan Iqbal (abdurriq)
February 11, 2026 15:26
View session
Contributor
Author
... This is a transient network timeout when downloading Ant from archive.apache.org: This is unrelated to the GLIBC compatibility fix. The logs show:
This is a known intermittent issue with Apache's archive servers. The test should pass on retry as the network issue is temporary. |
Contributor
|
Copilot Still: |
Copilot started work on behalf of
Abdurrahmaan Iqbal (abdurriq)
February 11, 2026 16:31
View session
Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com>
Contributor
Author
... Fixed in commit e7031f3. The issue was that setting The enhanced fix now:
This ensures no native binaries are present or used on RHEL 8 systems. |
…thub-actions-workflow-another-one
* Initial plan * Update Java version test to check for version 25 Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com>
Abdurrahmaan Iqbal (abdurriq)
marked this pull request as ready for review
February 17, 2026 10:29
Abdurrahmaan Iqbal (abdurriq)
requested a review
from a team
as a code owner
February 17, 2026 10:29
Copilot started work on behalf of
Abdurrahmaan Iqbal (abdurriq)
February 17, 2026 10:29
View session
Copilot started work on behalf of
Abdurrahmaan Iqbal (abdurriq)
February 17, 2026 10:41
View session
Abdurrahmaan Iqbal (abdurriq)
merged commit Feb 17, 2026
fa03710
into
copilot/unify-user-selection-logic
14 checks passed
Abdurrahmaan Iqbal (abdurriq)
deleted the
copilot/fix-github-actions-workflow-another-one
branch
February 17, 2026 10:44
Abdurrahmaan Iqbal (abdurriq)
added a commit
to abdurriq/devcontainers-features
that referenced
this pull request
Feb 17, 2026
…ntainers#1568) * Initial plan * Fix SDKMAN GLIBC compatibility for RHEL 8 systems Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Fix SDKMAN native binary removal for RHEL 8 systems Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> * Disable for RHEL 8 * Update Java latest version test to check for v25 (devcontainers#1574) * Initial plan * Update Java version test to check for version 25 Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: abdurriq <137001048+abdurriq@users.noreply.github.com> Co-authored-by: Abdurrahmaan Iqbal <abdurriq@github.com>
Abdurrahmaan Iqbal (abdurriq)
added a commit
that referenced
this pull request
Feb 23, 2026
Fix SDKMAN GLIBC 2.30 incompatibility on RHEL 8 family systems (#1568) * Initial plan * Fix SDKMAN GLIBC compatibility for RHEL 8 systems * Fix SDKMAN native binary removal for RHEL 8 systems * Disable for RHEL 8 * Update Java latest version test to check for v25 (#1574) * Initial plan * Update Java version test to check for version 25 --------- --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
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.
AlmaLinux 8 test scenarios were failing with
GLIBC_2.30 not foundwhen SDKMAN's native CLI binaries attempted to execute. RHEL 8 family distributions (AlmaLinux 8, Rocky 8, RHEL 8) ship with GLIBC 2.28 and cannot upgrade without breaking binary compatibility.Changes
The fix uses a triple approach to ensure no native binaries are present or used on RHEL 8 systems:
SDKMAN_NATIVE_VERSION="false"environment variable to request no native binaries${SDKMAN_DIR}/etc/configto disable native version usage${SDKMAN_DIR}/libexecdirectory if it existsThis comprehensive approach ensures SDKMAN uses only the shell-based CLI on RHEL 8 family systems. The shell-based CLI has no special GLIBC requirements and provides identical functionality - the native CLI is purely a performance optimization for management commands.
Only affects RHEL 8 family; other distributions continue using native binaries for better performance.
Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.