summaryrefslogtreecommitdiff
path: root/evergreen/compile_venv_dependency_check.sh
blob: 62cbded170d7979751ce276116cf2d044447ad32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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