Skip to content

Commit 8907508

Browse files
authored
RUST-1968 Fix openssl test on windows (#1207)
1 parent 18424e7 commit 8907508

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.evergreen/env.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ if [[ "$OSTYPE" == "cygwin" ]]; then
2424
export NVM_SYMLINK
2525
NVM_ARTIFACTS_PATH=$(cygpath -w "$NODE_ARTIFACTS_PATH/bin")
2626
export NVM_ARTIFACTS_PATH
27-
export OPENSSL_DIR="C:\\openssl"
28-
OPENSSL_LIB_PATH=$(cygpath $OPENSSL_DIR/lib)
2927
PATH=$(cygpath $NVM_SYMLINK):$(cygpath $NVM_HOME):$PATH
3028
export PATH
3129
echo "updated path on windows PATH=$PATH"
30+
31+
export OPENSSL_INCLUDE_DIR="C:\\Program Files\\OpenSSL-Win64\\include"
32+
export OPENSSL_LIB_DIR="C:\\Program Files\\OpenSSL-Win64\\lib\\VC\\x64\\MD"
3233
else
3334
# Turn off tracing for the very-spammy nvm script.
3435
set +o xtrace

0 commit comments

Comments
 (0)