Bug fixed about container creation with parameters. Minor typos fixed: tab vs space
[osm/devops.git] / jenkins / UI / start_build
index 5a54d2d..b05a7e2 100755 (executable)
@@ -37,11 +37,20 @@ else
        git clone $OSM_GIT_URL/$OSM_MDG
        cd $OSM_MDG
 fi
-INFO "starting build"
 
-### for start_build
-### put your commands here to 
-### build, test and produce coverage reports
+if [ $# -gt 0 ]; then
+    INFO "Code to compile: gerrit refspec '$1', commit-id: '$2'"
+    git fetch origin $1 || FATAL "git fetch origin '$1' didn't work"
+    git checkout -f $2 || FATAL "git checkout -f '$2' didn't work"
+else
+    INFO "Code to compile: master"
+    git checkout master
+fi
+
+INFO "starting build"
+make clean || FATAL "Make clean failed"
+make -j16 || FATAL "Make failed"
+sudo make install || FATAL "Make install Failed"
 
 RC=0