From: Jeremy Mordkoff Date: Wed, 18 Oct 2017 19:43:31 +0000 (-0400) Subject: BUG 385 update UI installer to actually call BUILD.sh X-Git-Tag: v3.0.0rc12^2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=7e3b580b8779926f30ec7fcd5366a95f0402d41a;p=osm%2Fdevops.git BUG 385 update UI installer to actually call BUILD.sh Signed-off-by: Jeremy Mordkoff --- diff --git a/jenkins/UI/start_build b/jenkins/UI/start_build index 50b2e06d..a103aa82 100755 --- a/jenkins/UI/start_build +++ b/jenkins/UI/start_build @@ -27,13 +27,15 @@ export OSM_MDG=UI OSM_load_config OSM_git_checkout "$@" +trap 'WARNING "INTERRUPT"; exit 1' INT INFO "starting build" make clean || FATAL "Make clean failed" -make -j16 || FATAL "Make failed" -sudo make install || FATAL "Make install Failed" +./BUILD.sh -INFO "build done" -exit 0 +RC=$? + +INFO "done, RC=$RC" +exit $RC