Skip to content

Commit 3d2c0de

Browse files
authored
RUST-2159 Fix evergreen windows openssl config (#1310)
1 parent a1c7d46 commit 3d2c0de

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.evergreen/run-tests.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ echo "cargo test options: $(cargo_test_options)"
2828

2929
set +o errexit
3030

31+
if [ "Windows_NT" == "$OS" ]; then
32+
export SSL_CERT_FILE=$(cygpath /etc/ssl/certs/ca-bundle.crt --windows)
33+
export SSL_CERT_DIR=$(cygpath /etc/ssl/certs --windows)
34+
fi
35+
3136
cargo_test ""
3237

3338
# cargo-nextest doesn't support doc tests

0 commit comments

Comments
 (0)