summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMikhail Shchatko <mikhail.shchatko@mongodb.com>2021-05-24 14:41:37 +0300
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-05-28 16:18:26 +0000
commit6c857ec647406a67b4d708b4a7bc8aacd661350c (patch)
tree52e82b3d55a04e8a5e8c531e17ab013747fb4029 /buildscripts
parent10b509b4a08bd94fb9df97dc15fd71927068e12e (diff)
downloadmongo-6c857ec647406a67b4d708b4a7bc8aacd661350c.tar.gz
SERVER-56769 Use tarball from arhive_dist_test task instead of git.get_project
(cherry picked from commit 0089b70cca49afd81834c8d051c986e6232d409d)
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/evergreen_gen_powercycle_tasks.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/buildscripts/evergreen_gen_powercycle_tasks.py b/buildscripts/evergreen_gen_powercycle_tasks.py
index 3967f2a3267..9d949c7068a 100755
--- a/buildscripts/evergreen_gen_powercycle_tasks.py
+++ b/buildscripts/evergreen_gen_powercycle_tasks.py
@@ -63,9 +63,13 @@ def get_setup_commands() -> Tuple[List[FunctionCall], Set[TaskDependency]]:
def get_skip_compile_setup_commands() -> Tuple[List[FunctionCall], set]:
"""Return skip compile setup commands."""
return [
+ BuiltInCommand("manifest.load", {}),
+ FunctionCall("git get project"),
+ FunctionCall("f_expansions_write"),
+ FunctionCall("kill processes"),
+ FunctionCall("cleanup environment"),
FunctionCall("set up venv"),
FunctionCall("upload pip requirements"),
- FunctionCall("f_expansions_write"),
FunctionCall("configure evergreen api credentials"),
FunctionCall("get compiled binaries"),
], set()