We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 249120b commit a5f3b4bCopy full SHA for a5f3b4b
etc/install-libmongocrypt.sh
@@ -24,7 +24,12 @@ if [ "Windows_NT" = "${OS:-}" ]; then
24
else
25
rm -rf libmongocrypt
26
git clone https://github.com/mongodb/libmongocrypt --depth=1 --branch $LIBMONGOCRYPT_TAG 2> /dev/null
27
- if ! ( ./libmongocrypt/.evergreen/compile.sh >| output.txt 2>&1 ); then
+ declare -a crypt_cmake_flags=(
28
+ "-DBUILD_TESTING=OFF"
29
+ "-DENABLE_ONLINE_TESTS=OFF"
30
+ "-DENABLE_MONGOC=OFF"
31
+ )
32
+ if ! ( DEBUG="0" DEFAULT_BUILD_ONLY=true LIBMONGOCRYPT_EXTRA_CMAKE_FLAGS="${crypt_cmake_flags[*]}" ./libmongocrypt/.evergreen/compile.sh >| output.txt 2>&1 ); then
33
cat output.txt 1>&2
34
exit 1
35
fi
0 commit comments