-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
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
cmake: fix and tidy up c-ares builds, enable in more CI jobs #14541
Closed
Conversation
This file contains 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
vszakats
changed the title
cmake: c-ares tests
cmake: fix and tidy up c-ares builds, enable in more GHA jobs
Aug 14, 2024
vszakats
changed the title
cmake: fix and tidy up c-ares builds, enable in more GHA jobs
cmake: fix and tidy up c-ares builds, enable in more CI jobs
Aug 14, 2024
vszakats
force-pushed
the
cm-ares-tests
branch
2 times, most recently
from
August 14, 2024 13:04
ea7479f
to
830836e
Compare
It fails on this platform, despite linking statically. Ref: 96a1a05 curl#14096
472: fails with mingw with Unicode enabled. 1299, 1613: seem like a case of expanding '*' to a filename. ``` FAIL 472: 'aws-sigv4 with query' HTTP, aws-sigv4 FAIL 1299: 'Send "OPTIONS *" with --request-target' HTTP, --request-target FAIL 1613: 'Send "OPTIONS *" with --request-target to a proxy' HTTP, HTTP proxy, --request-target ``` Ref: https://github.com/curl/curl/actions/runs/10388126947/job/28765761441#step:15:5902
vszakats
force-pushed
the
cm-ares-tests
branch
from
August 14, 2024 15:20
830836e
to
1601535
Compare
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.
set
CARES_NO_DEPRECATED
to avoid c-ares deprecation warnings.Like autotools does.
drop unused c-ares header directory when building libtests and test
servers.
disable TrackMemory (aka
CURLDEBUG
) feature for MSVC builds.It fails on test 558 and 1330, saying that TrackMemory isn't working.
Left a FIXME about it.
GHA/macos: enable c-ares in a cmake job.
GHA/windows: enable c-ares in MSVC job.
Fixes GHA/windows: add MSVC c-ares to openssl job #14202
GHA/windows: add c-ares mingw autotools job with tests.
(move
--with-windows-unicode
option from 'default' job tothis one to keep the former "default".)
Put these tests on ignore for now:
Ref: https://github.com/curl/curl/actions/runs/10388126947/job/28765761441#step:15:5902
472: fails with mingw despite Unicode enabled.
1299, 1613: seem like a case of expanding '*' to a filename.
GHA/windows: enable c-ares in mingw cmake job.