Fixed bug at RO start_build
[osm/devops.git] / jenkins / RO / start_build
index ddc29ef..223b231 100755 (executable)
@@ -52,14 +52,14 @@ fi
 INFO "starting build"
 
 INFO "  cleaning .pyc"
-rm *.pyc
+rm -f *.pyc
 INFO "  installing openmano packages and dependencies from current repo (--noclone)"
-./scripts/install_openmano.sh --noclone -q
+./scripts/install-openmano.sh --develop --noclone -q
 INFO "  compiling *.py"
-python -m py_compile *.py
-RC=$?
-#git checkout master #Cleaning the environment. It's also done at the beginning, but it's done just in case.
+python -m py_compile *.py   #&&     #uncomment to concatenate commands
+#basic test HERE            #&&     #uncomment to concatenate commands
 
+RC=$?
 INFO "done, RC=$RC"
 exit $RC