From: garciadeblas Date: Fri, 23 Sep 2016 07:19:23 +0000 (+0200) Subject: RO/start_build: added option --develop when installing openmano X-Git-Tag: v1.0.0~15 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=a3d139aed25d2043717d1dfbc92f0b557dcda5ff;p=osm%2Fdevops.git RO/start_build: added option --develop when installing openmano Change-Id: I1deace083d388c6b07611d04fcdc47085fc4e918 Signed-off-by: garciadeblas --- diff --git a/jenkins/RO/start_build b/jenkins/RO/start_build index ead2345f..81b337e1 100755 --- a/jenkins/RO/start_build +++ b/jenkins/RO/start_build @@ -54,11 +54,15 @@ INFO "starting build" INFO " cleaning .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. + +if RC; then + #basic test HERE + #RC=$? +fi INFO "done, RC=$RC" exit $RC