-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
build: check required rustls-ffi version #16922
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
Conversation
Analysis of PR #16922 at 57500c80: Test ../../tests/http/test_02_download.py::TestDownload::test_02_31_parallel_upgrade failed, which has NOT been flaky recently, so there could be a real issue in this PR. Generated by Testclutch |
57500c8
to
6e2c565
Compare
6e2c565
to
a6a9adc
Compare
a6a9adc
to
bce2c8a
Compare
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
bce2c8a
to
b469673
Compare
b469673
to
27d9d8b
Compare
This comment was marked as outdated.
This comment was marked as outdated.
27d9d8b
to
ce5e65d
Compare
Phew! I think it's good now. I fixed the unnecessary duplication in the
PR description updated accordingly. |
ce5e65d
to
348465c
Compare
@vszakats Are there any other changes you'd like to see here? Thanks! 🙇 |
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, this is looking good!
(sorry for my slowness on this)
Thank you @cpu, merged now! |
Try to enforce that the Rustls vTLS backend is only used with rustls-ffi 0.15 - the documentation already describes this as the required version. Follow-up from curl#16890 Closes curl#16922
Try to enforce that the Rustls vTLS backend is only used with rustls-ffi 0.15 - the documentation already describes this as the required version.
CMake rejecting rustls-ffi 0.14 w/ pkg-config:
CMake rejecting rustls-ffi 0.14 w/o pkg-config:
CMake accepting 0.15 w/ pkg-config
CMake accepting 0.15 w/o pkg-config)
configure rejecting rustls-ffi 0.14 w/ pkg-config
configure rejecting rustls-ffi 0.14 w/o pkg-config
configure accepting rustls-ffi 0.15 w/ pkg-config
configure accepting rustls-ffi 0.15 w/o pkg-config
Follow-up from #16890