mirror of
https://github.com/curl/curl.git
synced 2026-07-26 21:47:16 +03:00
cmake: fix and tidy up c-ares builds, enable in more CI jobs
- 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 #14202 - GHA/windows: add c-ares mingw autotools job with tests. (move `--with-windows-unicode` option from 'default' job to this one to keep the former "default".) Put these tests on ignore for now: ``` 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 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. Closes #14541
This commit is contained in:
parent
304a349e8c
commit
9f23c8f201
5 changed files with 13 additions and 12 deletions
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
|
|
@ -283,9 +283,9 @@ jobs:
|
|||
- name: 'SecureTransport ws debug+'
|
||||
generate: -DCURL_USE_SECTRANSP=ON -DENABLE_WEBSOCKETS=ON -DENABLE_DEBUG=ON -DENABLE_CURLDEBUG=ON
|
||||
macos-version-min: '10.8'
|
||||
- name: 'LibreSSL !ldap heimdal'
|
||||
- name: 'LibreSSL !ldap heimdal c-ares'
|
||||
install: libressl heimdal
|
||||
generate: -DOPENSSL_ROOT_DIR=$(brew --prefix libressl) -DCURL_USE_GSSAPI=ON -DGSS_ROOT_DIR=$(brew --prefix heimdal) -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON -DBUILD_EXAMPLES=ON
|
||||
generate: -DOPENSSL_ROOT_DIR=$(brew --prefix libressl) -DENABLE_ARES=ON -DCURL_USE_GSSAPI=ON -DGSS_ROOT_DIR=$(brew --prefix heimdal) -DCURL_DISABLE_LDAP=ON -DCURL_DISABLE_LDAPS=ON -DBUILD_EXAMPLES=ON
|
||||
macos-version-min: '10.15'
|
||||
- name: 'wolfSSL !ldap'
|
||||
install: wolfssl
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue