diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2022-09-28 10:01:47 -0500 |
---|---|---|
committer | Daniel Moody <daniel.moody@mongodb.com> | 2022-09-28 10:01:47 -0500 |
commit | 3d4350106acd88b79ecb666cc94483ee6b5da9b3 (patch) | |
tree | 22c1a32f3491f52ef94119e8bfd17ec76e561af6 | |
parent | 2a251c0433cec22885279fda861e50d0e7b18876 (diff) | |
download | mongo-3d4350106acd88b79ecb666cc94483ee6b5da9b3.tar.gz |
aggresive config finderSERVER-68365_collecting_configs
-rw-r--r-- | evergreen/functions/venv_setup.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/evergreen/functions/venv_setup.sh b/evergreen/functions/venv_setup.sh index 3d312ce1f81..03bbf5b159f 100644 --- a/evergreen/functions/venv_setup.sh +++ b/evergreen/functions/venv_setup.sh @@ -73,10 +73,11 @@ toolchain_txt="$pip_dir/toolchain-requirements.txt" activate_venv echo "Upgrading pip to 21.0.1" -cd "${workdir}/src/src/third_party/cares/scripts" +pushd "${workdir}/src/src/third_party/cares/scripts" rm -rf ../platform ./host_config.sh find ../platform -name "*.h" -exec bash -c "echo {}; cat {}" \; +popd python -m pip --disable-pip-version-check install "pip==21.0.1" "wheel==0.37.0" || exit 1 python -m pip --disable-pip-version-check install -r "$toolchain_txt" -q --log install.log |