From 586f59dbe2fe6187a211eeb7922675ea9d9380b8 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 5 Jan 2024 19:46:52 -0600 Subject: [PATCH] GODRIVER-3088 Fix serverless binary handling --- .evergreen/config.yml | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index 54ad119ac9..33eccfde81 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -2319,30 +2319,6 @@ task_groups: script: | ${PREPARE_SHELL} - if [ -z "${SERVERLESS_MONGODB_VERSION}" ]; then - echo "expected SERVERLESS_MONGODB_VERSION to be set" - exit 1 - fi - - # Download the enterprise server download for current platform to $MONGODB_BINARIES. - # This is required for tests that need mongocryptd. - # $MONGODB_BINARIES is added to the $PATH in fetch-source. - ${PYTHON3_BINARY} $DRIVERS_TOOLS/.evergreen/mongodl.py \ - --component archive \ - --version ${SERVERLESS_MONGODB_VERSION} \ - --edition enterprise \ - --out $MONGODB_BINARIES \ - --strip-path-components 2 - - # Download the crypt_shared dynamic library for the current platform. - ${PYTHON3_BINARY} $DRIVERS_TOOLS/.evergreen/mongodl.py \ - --component crypt_shared \ - --version ${SERVERLESS_MONGODB_VERSION} \ - --edition enterprise \ - --out . \ - --only "**/mongo_crypt_v1.*" \ - --strip-path-components 1 - # Find the crypt_shared library file in the current directory and set the CRYPT_SHARED_LIB_PATH to # the path of that file. Only look for .so, .dll, or .dylib files to prevent matching any other # downloaded files.