Changes in RO jenkins jobs to support compilation of a specific GIT_COMMIT from gerrit 72/272/1
authorgarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 31 Aug 2016 12:47:41 +0000 (14:47 +0200)
committergarciadeblas <gerardo.garciadeblas@telefonica.com>
Wed, 31 Aug 2016 12:47:41 +0000 (14:47 +0200)
Change-Id: Idb0f8fa7a0ed2739349a4c7784583f2405a08e87
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
jenkins/RO/start_build
jenkins/host/start_build

index abcf789..b633679 100755 (executable)
@@ -33,14 +33,19 @@ else
        git clone $OSM_GIT_URL/$OSM_MDG
        cd $OSM_MDG
 fi
+if [ $# -gt 0 ]; then
+       git checkout $1
+fi
+
 INFO "starting build"
 
 ### for start_build
 ### put your commands here to
 ### build, test and produce coverage reports
 
-#RC=0
-RC=`python -m py_compile *.py`
+rm *.pyc
+python -m py_compile *.py
+RC=$?
 
 INFO "done, RC=$RC"
 exit $RC
index dd69799..c3df393 100755 (executable)
@@ -25,6 +25,7 @@ OSM_JENKINS=$(dirname $HERE)
 [ $# -eq 1 ] || FATAL "arg is MDG name"
 
 export OSM_MDG=$1
+shift
 OSM_load_config
 
 if ! container_exists $OSM_BUILD_CONTAINER; then
@@ -53,7 +54,7 @@ else
     fi
 fi
 
-container_exec $OSM_BUILD_CONTAINER ./devops/jenkins/$OSM_MDG/start_build
+container_exec $OSM_BUILD_CONTAINER ./devops/jenkins/$OSM_MDG/start_build $*
 RC=$?
 INFO "$OSM_MDG build complete. Return code was $RC"
 exit $RC