| Jeremy Mordkoff | f13ff90 | 2016-07-06 18:01:08 -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=XXXX |
| 27 | OSM_load_config |
| Jeremy Mordkoff | 35d6f24 | 2016-10-06 16:17:05 -0700 | [diff] [blame] | 28 | OSM_git_checkout "$@" |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 29 | |
| 30 | INFO "starting build" |
| Jeremy Mordkoff | f13ff90 | 2016-07-06 18:01:08 -0400 | [diff] [blame] | 31 | ### for start_build |
| 32 | ### put your commands here to |
| 33 | ### build, test and produce coverage reports |
| Jeremy Mordkoff | 9713ede | 2016-09-08 14:24:27 -0400 | [diff] [blame] | 34 | # E.G. |
| 35 | #make clean || FATAL "make clean failed" |
| 36 | #make || FATAL "make failed" |
| 37 | #sudo make install || FATAL "make install failed" |
| Jeremy Mordkoff | f13ff90 | 2016-07-06 18:01:08 -0400 | [diff] [blame] | 38 | |
| Jeremy Mordkoff | 1921538 | 2016-07-06 18:17:46 -0400 | [diff] [blame] | 39 | RC=0 |
| Jeremy Mordkoff | f13ff90 | 2016-07-06 18:01:08 -0400 | [diff] [blame] | 40 | |
| Jeremy Mordkoff | 1921538 | 2016-07-06 18:17:46 -0400 | [diff] [blame] | 41 | INFO "done, RC=$RC" |
| 42 | exit $RC |
| Jeremy Mordkoff | f13ff90 | 2016-07-06 18:01:08 -0400 | [diff] [blame] | 43 | |
| 44 | |