Skip to content

Commit c50a495

Browse files
authored
CDRIVER-4396 update version check for csfle (#1002)
1 parent 22a8696 commit c50a495

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.evergreen/compile-unix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ fi
203203

204204
CONFIGURE_FLAGS="$CONFIGURE_FLAGS -DMONGO_SANITIZE=$SANITIZE"
205205

206-
if ! python3 build/mongodl.py --test -C csfle -V 5.3.1 -o . > /dev/null; then
206+
if ! python3 build/mongodl.py --test -C csfle -V 6.0.0-rc4 -o . > /dev/null; then
207207
echo "No csfle detected for this platform. Disabling MONGOC_TEST_USE_CSFLE."
208208
CONFIGURE_FLAGS="$CONFIGURE_FLAGS -DMONGOC_TEST_USE_CSFLE=OFF"
209209
fi

src/libmongoc/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,7 @@ if (MONGOC_TEST_USE_CSFLE)
872872
endif ()
873873

874874
get_filename_component (csfle_dest "${CMAKE_CURRENT_BINARY_DIR}/mongo_csfle_v1${CMAKE_SHARED_LIBRARY_SUFFIX}" ABSOLUTE)
875+
# If updating the "--version" for csfle, update the version in compile-unix.sh to match.
875876
add_custom_command (
876877
OUTPUT "${csfle_dest}"
877878
COMMAND

0 commit comments

Comments
 (0)