Skip to content

Commit cdacb64

Browse files
authored
GODRIVER-1780 Use unstable URL for libmongocrypt Windows tests. (#534)
FLE tests require the 1.1.0-beta download, which is uploaded to a different fixed URL than the latest stable release.
1 parent be40d50 commit cdacb64

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ functions:
7575
if [ "Windows_NT" = "$OS" ]; then
7676
mkdir -p c:/libmongocrypt/include
7777
mkdir -p c:/libmongocrypt/bin
78-
curl https://s3.amazonaws.com/mciuploads/libmongocrypt/windows/latest_release/libmongocrypt.tar.gz --output libmongocrypt.tar.gz
78+
# TODO: After a stable libmongocrypt 1.1.0 is released in MONGOCRYPT-293, update this URL to: https://s3.amazonaws.com/mciuploads/libmongocrypt/windows/latest_release/libmongocrypt.tar.gz
79+
curl https://s3.amazonaws.com/mciuploads/libmongocrypt/windows/latest_release/libmongocrypt_unstable.tar.gz --output libmongocrypt.tar.gz
7980
tar -xvzf libmongocrypt.tar.gz
8081
cp ./bin/mongocrypt.dll c:/libmongocrypt/bin
8182
cp ./include/mongocrypt/*.h c:/libmongocrypt/include

0 commit comments

Comments
 (0)