forked from SpiNNakerManchester/SupportScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·28 lines (26 loc) · 738 Bytes
/
setup.sh
File metadata and controls
executable file
·28 lines (26 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# This script assumes it is run from the directory holding all github projects in parallel
# bash SupportScripts/setup.sh a_branch_name
do_setup() {
if [ -d $1 ]; then
cd $1
if [ -z "$VIRTUAL_ENV" ] && [ -z "$CONDA_PREFIX" ]; && [ -z "$ASROOT" ]; then
python setup.py develop --user || exit $1
else
python setup.py develop || exit $1
fi
cd ..
echo "Finished setup of $1"
fi
}
do_setup SpiNNUtils
do_setup SpiNNMachine
do_setup SpiNNStorageHandlers
do_setup SpiNNMan
do_setup PACMAN
do_setup DataSpecification
do_setup spalloc
do_setup SpiNNFrontEndCommon
do_setup SpiNNakerGraphFrontEnd
do_setup sPyNNaker
do_setup sPyNNaker8
do_setup sPyNNakerVisualisers