blob: 0db007b715bd6539abc7910d63d36fc24743f3b2 [file] [log] [blame]
garciadeblasf937a8b2016-07-21 14:53:32 +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
garciadeblasbcc2bc42016-08-31 15:30:45 +020030 git pull
garciadeblasf937a8b2016-07-21 14:53:32 +020031else
32 INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG"
33 git clone $OSM_GIT_URL/$OSM_MDG
34 cd $OSM_MDG
35fi
garciadeblasa8cbb912016-08-31 14:47:41 +020036if [ $# -gt 0 ]; then
garciadeblasbcc2bc42016-08-31 15:30:45 +020037 git fetch origin +refs/for/master || FATAL "git fetch didn't work"
garciadeblase5e98272016-08-31 15:15:02 +020038 git checkout $1 || FATAL "git checkout '$1' didn't work"
garciadeblasa8cbb912016-08-31 14:47:41 +020039fi
40
garciadeblasf937a8b2016-07-21 14:53:32 +020041INFO "starting build"
42
43### for start_build
44### put your commands here to
45### build, test and produce coverage reports
46
garciadeblasa8cbb912016-08-31 14:47:41 +020047rm *.pyc
48python -m py_compile *.py
49RC=$?
garciadeblasf937a8b2016-07-21 14:53:32 +020050
51INFO "done, RC=$RC"
52exit $RC
53
54