blob: 2bd9074b40b934444c5860794329cfb57a3685eb [file] [log] [blame]
Jeremy Mordkofff13ff902016-07-06 18:01:08 -04001#!/bin/bash
2# Copyright 2016 RIFT.IO Inc
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16# TEMPLATE script to start a build. This is run inside a container
17#
18# 6 July 2016 -- Jeremy.Mordkoff@riftio.com -- adapted from the riftware version
19#
20
21HERE=$(realpath $(dirname $0))
22OSM_JENKINS=$(dirname $HERE)
23. $OSM_JENKINS/common/all_funcs
24
25# SET YOU MDG repository name here
26export OSM_MDG=XXXX
27OSM_load_config
28
29
30# Here is an example for how to handle an incremental build
31if [ -d $OSM_MDG ]; then
32 INFO "reusing existing workspace"
33 cd $OSM_MDG
34 git pull
35else
36 INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG"
37 git clone $OSM_GIT_URL/$OSM_MDG
38 cd $OSM_MDG
39fi
Jeremy Mordkofff13ff902016-07-06 18:01:08 -040040
Jeremy Mordkoff9713ede2016-09-08 14:24:27 -040041# Gerrit arranges to call this script with two parameters -- the refspec and commit ID that needs to be built
42if [ $# -gt 0 ]; then
43 INFO "Code to compile: gerrit refspec '$1', commit-id: '$2'"
44 git fetch origin $1 || FATAL "git fetch origin '$1' didn't work"
45 git checkout -f $2 || FATAL "git checkout -f '$2' didn't work"
46else
47 INFO "Code to compile: master"
48 git checkout master
49fi
50
51INFO "starting build"
Jeremy Mordkofff13ff902016-07-06 18:01:08 -040052### for start_build
53### put your commands here to
54### build, test and produce coverage reports
Jeremy Mordkoff9713ede2016-09-08 14:24:27 -040055# E.G.
56#make clean || FATAL "make clean failed"
57#make || FATAL "make failed"
58#sudo make install || FATAL "make install failed"
Jeremy Mordkofff13ff902016-07-06 18:01:08 -040059
Jeremy Mordkoff19215382016-07-06 18:17:46 -040060RC=0
Jeremy Mordkofff13ff902016-07-06 18:01:08 -040061
Jeremy Mordkoff19215382016-07-06 18:17:46 -040062INFO "done, RC=$RC"
63exit $RC
Jeremy Mordkofff13ff902016-07-06 18:01:08 -040064
65