Use an Ubuntu 20.04 container to build Concrypt on GitHub CI. - #1527
Merged
Conversation
This test fails because BoringSSL remove a named curve.
Collaborator
Author
|
I had to do some additional change to make the tests pass:
|
Collaborator
Author
|
I did one additional change: Make allocateHeapBuffer non-abstract. It now throws an exception when called. But since this method is currently not used, this should fix #1526. |
tholenst
approved these changes
Aug 12, 2026
15 tasks
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.
Previously, Conscrypt for Linux was built using Ubuntu 22.04. This ended up
requiring the Conscrypt native libraries (listed below) to require GLIBC_2.35.
libconscrypt_openjdk_jni-linux-x86_64.so
libconscrypt_openjdk_jni-linux-aarch_64.so
Update the build machine (separate from the runner) to use an Ubuntu 20.04
container. For libconscrypt_openjdk_jni-linux-x86_64.so, this lowers the glibc
floor from 2.35 to 2.14, and for libconscrypt_openjdk_jni-linux-aarch_64.so,
this lowers the glibc floor from 2.35 to 2.17.
This will fix the UnsatisfiedLinkError on RHEL/Rocky 9 is resolved.
Fixes https://github.com/robolectric/robolectric/issues/11362