-
Notifications
You must be signed in to change notification settings - Fork 784
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
Add libssl install to udeps task #6777
Conversation
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.
Thanks for looking into this 🙏
I don't mind merging this to unblock CI!
I think our options are:
- install libssl 1.1 on the runner (this PR)
- revert to
ubuntu-22.04
- this is probably not a long term solution either - investigate possibility of removing ssl 1.1 dependency complelely (likely from reqwest?)
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.
Agree we should just merge this to unblock CI, and then hope that cargo-udeps
is updated so as not to require this.
@mergify queue |
✅ The pull request has been merged automaticallyThe pull request has been merged automatically at a244aa3 |
I'm not really sure what happened between now and yesterday, but I do know libssl1.1 has reached EOL recently. The udeps ci task wants to access libssl1.1 for some reason, so I've added a step to install it. It's not the cleanest fix, if anyone has better ideas please let me know
Here's the original error message
error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
And some informational links
https://stackoverflow.com/questions/72133316/libssl-so-1-1-cannot-open-shared-object-file-no-such-file-or-directory
https://openssl-library.org/post/2023-03-28-1.1.1-eol/