Skip to content

Commit cff208c

Browse files
committed
use pre-release of libmongocrypt
1 parent 4ba5ffa commit cff208c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.evergreen/scripts/compile-libmongocrypt.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,18 @@ compile_libmongocrypt() {
1010
# `.evergreen/scripts/kms-divergence-check.sh` to ensure that there is no
1111
# divergence in the copied files.
1212

13-
# Clone libmongocrypt and check-out 1.13.0.
14-
git clone -q --depth=1 https://github.com/mongodb/libmongocrypt --branch 1.13.0 || return
13+
# Clone libmongocrypt and check-out commit containing changes for SPM-4158.
14+
git clone -q https://github.com/mongodb/libmongocrypt || return
15+
cd libmongocrypt
16+
git checkout 5b4691bfb964155bd1374666f0330446278708df
17+
cd ..
1518

1619
declare -a crypt_cmake_flags=(
1720
"-DMONGOCRYPT_MONGOC_DIR=${mongoc_dir}"
1821
"-DBUILD_TESTING=OFF"
1922
"-DENABLE_ONLINE_TESTS=OFF"
2023
"-DENABLE_MONGOC=OFF"
21-
"-DBUILD_VERSION=1.13.0"
24+
"-DBUILD_VERSION=1.15.0-pre"
2225
)
2326

2427
. "$(dirname "${BASH_SOURCE[0]}")/find-ccache.sh"

0 commit comments

Comments
 (0)