-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fix GLIBC version not found in java maven jar #2613
Conversation
@eddyxu PTAL, i cancelled the workflow since it will actually release to maven. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we make a 0.0.5 test release to see whether it solve the problem
The setup-java didn't set up gpg correctly
The previous successful one shows
|
@@ -40,6 +44,10 @@ jobs: | |||
steps: | |||
- name: Checkout repository | |||
uses: actions/checkout@v4 | |||
- name: Set up Node.js 16 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apparently this fixes the GLIBC version issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the glibc issue in older ubuntu version, ubuntu version <= 20
Revert nodejs version back to 16 to avoid GLIBC version not found issue in ubuntu and other OS.
Starting from nodejs 18, it requires a much higher GLIBC version and will prevent the application from starting if fail the check.