Changes in RO jenkins jobs to support compilation of a specific GIT_COMMIT from gerrit
[osm/devops.git] / jenkins / RO / start_build
1 #!/bin/bash
2 #
3 #   Licensed under the Apache License, Version 2.0 (the "License");
4 #   you may not use this file except in compliance with the License.
5 #   You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 #   Unless required by applicable law or agreed to in writing, software
10 #   distributed under the License is distributed on an "AS IS" BASIS,
11 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 #   See the License for the specific language governing permissions and
13 #   limitations under the License.
14
15
16
17 HERE=$(realpath $(dirname $0))
18 OSM_JENKINS=$(dirname $HERE)
19 . $OSM_JENKINS/common/all_funcs
20
21 # SET YOU MDG repository name here
22 export OSM_MDG=RO
23 OSM_load_config
24
25
26 # Here is an example for how to handle an incremental build
27 if [ -d $OSM_MDG ]; then
28         INFO "reusing existing workspace"
29         cd $OSM_MDG
30         git pull 
31 else
32         INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG"
33         git clone $OSM_GIT_URL/$OSM_MDG
34         cd $OSM_MDG
35 fi
36 if [ $# -gt 0 ]; then
37         git checkout $1
38 fi
39
40 INFO "starting build"
41
42 ### for start_build
43 ### put your commands here to
44 ### build, test and produce coverage reports
45
46 rm *.pyc
47 python -m py_compile *.py
48 RC=$?
49
50 INFO "done, RC=$RC"
51 exit $RC
52
53