0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/evergreen/compile_venv_dependency_check.sh
Andrew Morrow 7657e615d2 SERVER-62994 Use v4 toolchain for everything except clang format
It has been a pleasure working here and quite the wild ride.

Good luck everyone.
2022-12-13 23:03:13 +00:00

13 lines
413 B
Bash

# Quick check to ensure all scons.py dependecies have been added to compile-requirements.txt
set -o errexit
set -o verbose
# Create virtual env
/opt/mongodbtoolchain/v4/bin/virtualenv --python /opt/mongodbtoolchain/v4/bin/python3 ./compile_venv
source ./compile_venv/bin/activate
# Try printing scons.py help message
cd src
python -m pip install -r etc/pip/compile-requirements.txt
buildscripts/scons.py --help