mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
7657e615d2
It has been a pleasure working here and quite the wild ride. Good luck everyone.
13 lines
413 B
Bash
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
|