diff options
author | Zituo Jin <zituo.jin@mongodb.com> | 2022-01-11 14:10:41 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-01-11 14:56:33 +0000 |
commit | 84cd050cee78239d3c3688ef94eeb4bbbcf9a4cd (patch) | |
tree | 836d8ba250f5f9d1000222a74dbd7922313ed9b6 /evergreen | |
parent | bcadf746d07d2eb75103ca9b7956b02a481d7a7e (diff) | |
download | mongo-84cd050cee78239d3c3688ef94eeb4bbbcf9a4cd.tar.gz |
SERVER-61355 Remove setup-multiversion from the mongo repo
Diffstat (limited to 'evergreen')
-rwxr-xr-x | evergreen/compiled_binaries_get.sh | 5 | ||||
-rw-r--r-- | evergreen/multiversion_setup.sh | 12 |
2 files changed, 9 insertions, 8 deletions
diff --git a/evergreen/compiled_binaries_get.sh b/evergreen/compiled_binaries_get.sh index fc4507173d1..3468e36510b 100755 --- a/evergreen/compiled_binaries_get.sh +++ b/evergreen/compiled_binaries_get.sh @@ -7,6 +7,7 @@ set -o errexit set -o verbose activate_venv +$python -m pip --disable-pip-version-check install "db-contrib-tool==0.1.6" rm -rf /data/install dist-test/bin @@ -36,10 +37,10 @@ fi # This is primarily for tests for infrastructure which don't always need the latest # binaries. -$python buildscripts/resmoke.py setup-multiversion \ +db-contrib-tool setup-repro-env \ --installDir /data/install \ --linkDir dist-test/bin \ --edition $edition \ --platform $platform \ --architecture $architecture \ - --useLatest master + master diff --git a/evergreen/multiversion_setup.sh b/evergreen/multiversion_setup.sh index c6f51c9ef11..606657a8d22 100644 --- a/evergreen/multiversion_setup.sh +++ b/evergreen/multiversion_setup.sh @@ -7,6 +7,7 @@ set -o errexit set -o verbose activate_venv +$python -m pip --disable-pip-version-check install "db-contrib-tool==0.1.6" rm -rf /data/install /data/multiversion @@ -14,13 +15,13 @@ edition="${multiversion_edition}" platform="${multiversion_platform}" architecture="${multiversion_architecture}" -$python buildscripts/resmoke.py setup-multiversion \ +db-contrib-tool setup-repro-env \ --installDir /data/install \ --linkDir /data/multiversion \ --edition $edition \ --platform $platform \ --architecture $architecture \ - --useLatest 4.0 + 4.0 # The platform and architecture for how some of the binaries are reported in # https://downloads.mongodb.org/full.json changed between MongoDB 4.0 and MongoDB 4.2. @@ -39,13 +40,13 @@ if [ ! -z "${multiversion_architecture_42_or_later}" ]; then architecture="${multiversion_architecture_42_or_later}" fi -$python buildscripts/resmoke.py setup-multiversion \ +db-contrib-tool setup-repro-env \ --installDir /data/install \ --linkDir /data/multiversion \ --edition $edition \ --platform $platform \ --architecture $architecture \ - --useLatest 4.2 + 4.2 # The platform and architecture for how some of the binaries are reported in # https://downloads.mongodb.org/full.json changed between MongoDB 4.2 and MongoDB 4.4. @@ -75,12 +76,11 @@ if [[ -n "${last_continuous_evg_version_id}" ]]; then last_continuous_arg="${last_continuous_evg_version_id}" fi -$python buildscripts/resmoke.py setup-multiversion \ +db-contrib-tool setup-repro-env \ --installDir /data/install \ --linkDir /data/multiversion \ --edition $edition \ --platform $platform \ --architecture $architecture \ - --useLatest \ $last_lts_arg \ $last_continuous_arg 4.4 5.1 |