| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 1 | #!/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 | |
| 21 | HERE=$(realpath $(dirname $0)) |
| 22 | OSM_JENKINS=$(dirname $HERE) |
| 23 | . $OSM_JENKINS/common/all_funcs |
| 24 | |
| 25 | # SET YOU MDG repository name here |
| 26 | export OSM_MDG=SO |
| 27 | OSM_load_config |
| 28 | |
| 29 | |
| 30 | # Here is an example for how to handle an incremental build |
| 31 | if [ -d $OSM_MDG ]; then |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 32 | INFO "reusing existing workspace" |
| 33 | cd $OSM_MDG |
| 34 | git pull |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 35 | else |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 36 | INFO "cloning MDG $OSM_MDG from $OSM_GIT_URL/$OSM_MDG" |
| 37 | git clone $OSM_GIT_URL/$OSM_MDG |
| 38 | cd $OSM_MDG |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 39 | fi |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 40 | |
| 41 | if [ $# -gt 0 ]; then |
| garciadeblas | 7d4bb73 | 2016-10-04 00:51:14 +0200 | [diff] [blame] | 42 | if [ "$1" = "checkout" ]; then |
| 43 | INFO "Code to compile: '$2'" |
| 44 | git checkout $2 |
| 45 | else |
| 46 | INFO "Code to compile: gerrit refspec '$1', commit-id: '$2'" |
| 47 | git fetch origin $1 || FATAL "git fetch origin '$1' didn't work" |
| 48 | git checkout -f $2 || FATAL "git checkout -f '$2' didn't work" |
| 49 | fi |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 50 | else |
| 51 | INFO "Code to compile: master" |
| 52 | git checkout master |
| 53 | fi |
| 54 | |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 55 | INFO "starting build" |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 56 | make clean || FATAL "make clean failed" |
| Leslie Giles | a80332f | 2016-09-27 13:54:26 -0400 | [diff] [blame] | 57 | ./BUILD.sh |
| Jeremy Mordkoff | d0f2310 | 2016-09-07 19:07:00 -0400 | [diff] [blame] | 58 | |
| 59 | RC=$? |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 60 | |
| 61 | INFO "done, RC=$RC" |
| 62 | exit $RC |
| 63 | |
| 64 | |