Fix SDKMAN GLIBC 2.30 incompatibility on RHEL 8 family systems#1568
Draft
Copilot wants to merge 5 commits intocopilot/unify-user-selection-logicfrom
Draft
Fix SDKMAN GLIBC 2.30 incompatibility on RHEL 8 family systems#1568Copilot wants to merge 5 commits intocopilot/unify-user-selection-logicfrom
Copilot wants to merge 5 commits intocopilot/unify-user-selection-logicfrom
Conversation
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
|
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: |
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
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.