diff options
author | Andrew Morrow <acm@mongodb.com> | 2018-05-26 11:11:57 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2018-05-30 15:17:21 -0400 |
commit | aea0c0f19b6b61e1d600cda7e69683ad6a9ffed2 (patch) | |
tree | 0bdd43f427c66c20e23693e43e3df50b0fdb205d /etc | |
parent | ba5d89097503ad1c9ddb8b58ac371a7c3c394d9d (diff) | |
download | mongo-aea0c0f19b6b61e1d600cda7e69683ad6a9ffed2.tar.gz |
SERVER-33907 Cleanup naming of embedded SDK in preparation for ABI
Diffstat (limited to 'etc')
-rw-r--r-- | etc/evergreen.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index 5b1f2f68827..596273cd998 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -1446,16 +1446,16 @@ functions: ${activate_virtualenv} if [ ${enable_embedded_tests|false} = "ios_tvos_simulator" ]; then ${compile_env|} buildscripts/runiossim.sh ${ios_sim_device} ${ios_sim_runtime} "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_capi_test" --tempPath /data - ${compile_env|} buildscripts/runiossim.sh ${ios_sim_device} ${ios_sim_runtime} "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_transport_test" --tempPath /data + ${compile_env|} buildscripts/runiossim.sh ${ios_sim_device} ${ios_sim_runtime} "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_mongoc_client_test" --tempPath /data elif [ ${enable_embedded_tests|false} = "android_emulator" ]; then # strip because the binaries with debug symbols are too big for the default storage on the emulator find build/mongo-embedded-sdk-${version}/bin -type f | xargs $(dirname $(pwd))/android_toolchain/bin/*-linux-android*-strip find build/mongo-embedded-sdk-${version}/lib -type f -name "*.so" | xargs $(dirname $(pwd))/android_toolchain/bin/*-linux-android*-strip ${compile_env|} buildscripts/runandroidsim.sh $(dirname $(pwd))/android_sdk ${android_toolchain_system_image_arch} "build/mongo-embedded-sdk-${version}" "bin/mongo_embedded_capi_test" --tempPath /data - ${compile_env|} buildscripts/runandroidsim.sh $(dirname $(pwd))/android_sdk ${android_toolchain_system_image_arch} "build/mongo-embedded-sdk-${version}" "bin/mongo_embedded_transport_test" --tempPath /data + ${compile_env|} buildscripts/runandroidsim.sh $(dirname $(pwd))/android_sdk ${android_toolchain_system_image_arch} "build/mongo-embedded-sdk-${version}" "bin/mongo_embedded_mongoc_client_test" --tempPath /data elif [ ${enable_embedded_tests|false} = "native" ]; then "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_capi_test" - "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_transport_test" + "build/mongo-embedded-sdk-${version}/bin/mongo_embedded_mongoc_client_test" fi "run powercycle test" : |