Skip to content

Commit

Permalink
GODRIVER-2515 test with libmongocrypt 1.6.1 (mongodb#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinAlbs authored Oct 26, 2022
1 parent 1a45dfd commit 0175d29
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,7 @@ functions:
go version
go env
LIBMONGOCRYPT_BRANCH="master"
# LIBMONGOCRYPT_COMMIT is the development branch including unreleased features of libmongocrypt 1.6.0.
# TODO(GODRIVER-2515) use libmongocrypt 1.6.0 once it is tagged.
LIBMONGOCRYPT_COMMIT="393046ba379d097f482a9d41d05bf2ebc78ce397"
LIBMONGOCRYPT_TAG="1.6.1"
# Install libmongocrypt based on OS.
if [ "Windows_NT" = "$OS" ]; then
mkdir -p c:/libmongocrypt/include
Expand All @@ -105,7 +102,7 @@ functions:
mkdir libmongocrypt-all
cd libmongocrypt-all
# The following URL is published from the upload-all task in the libmongocrypt Evergreen project.
curl https://mciuploads.s3.amazonaws.com/libmongocrypt/all/$LIBMONGOCRYPT_BRANCH/$LIBMONGOCRYPT_COMMIT/libmongocrypt-all.tar.gz -o libmongocrypt-all.tar.gz
curl https://mciuploads.s3.amazonaws.com/libmongocrypt/all/$LIBMONGOCRYPT_TAG/libmongocrypt-all.tar.gz -o libmongocrypt-all.tar.gz
tar -xf libmongocrypt-all.tar.gz
cd ..
cp libmongocrypt-all/windows-test/bin/mongocrypt.dll c:/libmongocrypt/bin
Expand All @@ -116,7 +113,7 @@ functions:
else
git clone https://github.com/mongodb/libmongocrypt
cd libmongocrypt
git checkout $LIBMONGOCRYPT_COMMIT
git checkout $LIBMONGOCRYPT_TAG
cd ..
./libmongocrypt/.evergreen/compile.sh
fi
Expand Down

0 comments on commit 0175d29

Please sign in to comment.