mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 09:32:32 +01:00
15 lines
355 B
Bash
Executable File
15 lines
355 B
Bash
Executable File
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
activate_venv
|
|
GRAPH_FILE=$(find build -name "libdeps.graphml")
|
|
python buildscripts/libdeps/analyzer_unittests.py
|
|
python buildscripts/libdeps/gacli.py --graph-file $GRAPH_FILE > results.txt
|
|
gzip $GRAPH_FILE
|
|
mv $GRAPH_FILE.gz .
|