blob: 7ae8d240c61aa5f0fcbe2157e53e001b9e635bb2 [file] [log] [blame]
garciadeblas17edada2016-09-07 15:36:25 +02001#!/bin/bash
garciadeblasf937a8b2016-07-21 14:53:32 +02002#
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#
garciadeblasf937a8b2016-07-21 14:53:32 +020015#
16
17HERE=$(realpath $(dirname $0))
18OSM_JENKINS=$(dirname $HERE)
19. $OSM_JENKINS/common/all_funcs
20
21# SET YOU MDG repository name here
22export OSM_MDG=RO
23OSM_load_config
24
25
26# Here is an example for how to handle an incremental build
27if [ -d $OSM_MDG ]; then
28 INFO "reusing existing workspace"
29 cd $OSM_MDG
garciadeblasdc5ae192016-09-08 10:19:24 +020030 git checkout master #to make sure that we are in the right branch before pulling the code
garciadeblasbcc2bc42016-08-31 15:30:45 +020031 git pull
garciadeblasdc5ae192016-09-08 10:19:24 +020032 # TO DO: probably it makes sense to fetch all branches, but this requires creating the branches locally
garciadeblasf937a8b2016-07-21 14:53:32 +020033else
34 INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG"
35 git clone $OSM_GIT_URL/$OSM_MDG
36 cd $OSM_MDG
37fi
garciadeblasdc5ae192016-09-08 10:19:24 +020038
garciadeblasa8cbb912016-08-31 14:47:41 +020039if [ $# -gt 0 ]; then
garciadeblasdc5ae192016-09-08 10:19:24 +020040 INFO "Code to compile: gerrit refspec '$1', commit-id: '$2'"
garciadeblas6aff2492016-09-08 11:24:42 +020041 git fetch origin $1 || FATAL "git fetch origin '$1' didn't work"
42 git checkout -f $2 || FATAL "git checkout -f '$2' didn't work"
garciadeblasdc5ae192016-09-08 10:19:24 +020043else
44 INFO "Code to compile: master"
45 git checkout master
garciadeblasa8cbb912016-08-31 14:47:41 +020046fi
47
garciadeblasf937a8b2016-07-21 14:53:32 +020048INFO "starting build"
49
garciadeblasa8cbb912016-08-31 14:47:41 +020050rm *.pyc
51python -m py_compile *.py
52RC=$?
garciadeblasdc5ae192016-09-08 10:19:24 +020053git checkout master #Cleaning the environment. It's also done at the beginning, but it's done just in case.
garciadeblasf937a8b2016-07-21 14:53:32 +020054
55INFO "done, RC=$RC"
56exit $RC
57
58