diff options
author | Mikhail Shchatko <mikhail.shchatko@mongodb.com> | 2020-12-04 10:42:50 +0300 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-12-08 07:43:26 +0000 |
commit | 7fb2d5929683c61462b10550a0dd69d23b951954 (patch) | |
tree | b991ad0764576322438925bf5d3f82d71ec74b92 /buildscripts/patch_builds | |
parent | 0aa1f24df337212f33b9aaa6e0e8d5204f44fa0e (diff) | |
download | mongo-7fb2d5929683c61462b10550a0dd69d23b951954.tar.gz |
SERVER-39859 Use the Evergreen REST v2 API to download -latest tarballs in setup multiversion mongodb
Diffstat (limited to 'buildscripts/patch_builds')
-rw-r--r-- | buildscripts/patch_builds/task_generation.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildscripts/patch_builds/task_generation.py b/buildscripts/patch_builds/task_generation.py index 2ca8a7e184f..c4ad822fc0e 100644 --- a/buildscripts/patch_builds/task_generation.py +++ b/buildscripts/patch_builds/task_generation.py @@ -26,6 +26,7 @@ def resmoke_commands(run_tests_fn_name: str, run_tests_vars: Dict[str, Any], commands = [ timeout_info.cmd, FunctionCall("do setup"), + FunctionCall("configure evergreen api credentials") if use_multiversion else None, FunctionCall("do multiversion setup") if use_multiversion else None, FunctionCall(run_tests_fn_name, run_tests_vars), ] |