blob: a103aa8296e80338b2186667957582a8fec93613 [file] [log] [blame]
Jeremy Mordkoffa2813692016-08-04 19:46:55 -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=UI
27OSM_load_config
Jeremy Mordkoff35d6f242016-10-06 16:17:05 -070028OSM_git_checkout "$@"
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040029
Jeremy Mordkoff7e3b5802017-10-18 15:43:31 -040030trap 'WARNING "INTERRUPT"; exit 1' INT
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040031
Jeremy Mordkoff9713ede2016-09-08 14:24:27 -040032INFO "starting build"
33make clean || FATAL "Make clean failed"
Jeremy Mordkoff7e3b5802017-10-18 15:43:31 -040034./BUILD.sh
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040035
Jeremy Mordkoff7e3b5802017-10-18 15:43:31 -040036RC=$?
37
38INFO "done, RC=$RC"
39exit $RC
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040040
41