| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -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 | # script to start a build. This is run inside a container |
| 17 | # |
| 18 | # 24 June 2016 -- Jeremy Mordkoff -- Genesis |
| 19 | |
| 20 | HERE=$(realpath $(dirname $0)) |
| 21 | OSM_JENKINS=$(dirname $HERE) |
| 22 | . $OSM_JENKINS/common/all_funcs |
| 23 | export OSM_MDG=riftware |
| 24 | OSM_load_config |
| 25 | |
| 26 | |
| 27 | if [ -d riftware ]; then |
| 28 | INFO "reusing existing workspace" |
| 29 | cd riftware |
| 30 | git pull |
| 31 | else |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 32 | INFO "install pre-requisites" |
| 33 | yum install -y yum-utils curl |
| 34 | curl -o /etc/yum.repos.d/release.repo http://buildtracker.riftio.com/repo_file/fc20/OSM/ |
| 35 | yum install -y --nogpgcheck rw.tools-container-tools rw.tools-scripts |
| 36 | /usr/rift/container_tools/mkcontainer --modes build --internet --latest --repofile /usr/rift/container_tools/riftware.repo |
| 37 | |
| 38 | |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 39 | INFO "cloning MDG riftware from $OSM_GIT_URL/riftware" |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 40 | # these were missing once, so just to be safe, install them again here |
| 41 | yum -y install cmake wget lcov |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 42 | git clone $OSM_GIT_URL/riftware |
| 43 | cd riftware |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 44 | fi |
| 45 | |
| Jeremy Mordkoff | a281369 | 2016-08-04 19:46:55 -0400 | [diff] [blame] | 46 | ./rift-shell -r -- make rw.ext |
| 47 | RC=$? |
| 48 | |
| 49 | if [ $RC == 0 ]; then |
| 50 | ./rift-shell -r -- make -j16 |
| 51 | RC=$? |
| 52 | fi |
| Jeremy Mordkoff | 1921538 | 2016-07-06 18:17:46 -0400 | [diff] [blame] | 53 | |
| 54 | INFO "done RC = $RC" |
| 55 | exit $RC |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 56 | |
| 57 | |
| 58 | |