Skip to content
Snippets Groups Projects
Commit 2e9b8140 authored by garciadeblas's avatar garciadeblas
Browse files

Changes in RO start_build to add compilation of the VIM connectors


Change-Id: I3a6d6b581b82007771a76af5ca387acce9113093
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent 59699d60
No related branches found
No related tags found
No related merge requests found
...@@ -32,17 +32,21 @@ INFO "starting build" ...@@ -32,17 +32,21 @@ INFO "starting build"
INFO " cleaning .pyc" INFO " cleaning .pyc"
rm -f *.pyc rm -f *.pyc
INFO " installing openmano packages and dependencies from current repo (--noclone)" INFO " installing openmano packages and dependencies from current repo (--noclone)"
./scripts/install-openmano.sh --noclone --force -q ./scripts/install-openmano.sh --noclone --force -q
INFO " compiling *.py" INFO " compiling *.py"
#TEMPFILE="$(mktemp -q -p . "openmanolinker.XXXXXX.py")" TEMPFILE="$(mktemp -q -p . "openmanolinker.XXXXXX.py")"
#trap 'rm -f "$TEMPFILE"' EXIT trap 'rm -f "$TEMPFILE"' EXIT
#for i in vimconn*.py; do echo "import $i" >> $TEMPFILE; done for i in `ls vimconn_*.py |sed "s/\.py//"`; do echo "import $i" >> $TEMPFILE; done
#python $TEMPFILE &&
python -m py_compile *.py && #uncomment to concatenate commands python $TEMPFILE &&
python -m py_compile *.py &&
INFO " basic_test" && INFO " basic_test" &&
./test/basictest.sh --force --insert-bashrc --install-openvim --init-openvim #&& ./test/basictest.sh --force --insert-bashrc --install-openvim --init-openvim #&& #uncomment to add new tests
#basic test HERE #&& #uncomment to concatenate commands # OTHER TESTS HERE
RC=$? RC=$?
INFO "done, RC=$RC" INFO "done, RC=$RC"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment