Skip to content

Commit

Permalink
Use updated curl on evergreen windows hosts (#7409)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbreams committed Mar 2, 2024
1 parent bf44379 commit bdb8967
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ functions:
fi
if [ -n "${curl_base|}" ]; then
set_cmake_var curl_vars CURL_LIBRARY PATH "$(./evergreen/abspath.sh ${curl_base}/lib/curl.lib)"
set_cmake_var curl_vars CURL_LIBRARY PATH "$(./evergreen/abspath.sh ${curl_base}/lib/libcurl.dll.a)"
set_cmake_var curl_vars CURL_INCLUDE_DIR PATH "$(./evergreen/abspath.sh ${curl_base}/include)"
set_cmake_var baas_vars REALM_CURL_CACERTS PATH "$(./evergreen/abspath.sh "${curl_base}/bin/cacert.pem")"
fi
Expand Down Expand Up @@ -221,6 +221,10 @@ functions:
export DEVELOPER_DIR="${xcode_developer_dir}"
fi
if [[ -n "${curl_base}" ]]; then
export PATH="${curl_base}/bin":$PATH
fi
# NOTE: These two values will be ANDed together for matching tests
TEST_FLAGS=
if [[ -n "${test_label}" ]]; then
Expand Down

0 comments on commit bdb8967

Please sign in to comment.