blob: 0e3101f5632ffd467ddbee5d7094dd8dafc458b5 [file] [log] [blame]
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -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# script to start a build. This is run inside a container
17#
18# 24 June 2016 -- Jeremy Mordkoff -- Genesis
19
20HERE=$(realpath $(dirname $0))
21OSM_JENKINS=$(dirname $HERE)
22. $OSM_JENKINS/common/all_funcs
23export OSM_MDG=riftware
24OSM_load_config
25
26
27if [ -d riftware ]; then
28 INFO "reusing existing workspace"
29 cd riftware
30 git pull
31else
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040032 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 Mordkoff50c2e862016-06-24 15:26:41 -040039 INFO "cloning MDG riftware from $OSM_GIT_URL/riftware"
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040040 # these were missing once, so just to be safe, install them again here
41 yum -y install cmake wget lcov
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040042 git clone $OSM_GIT_URL/riftware
43 cd riftware
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040044fi
45
Jeremy Mordkoffa2813692016-08-04 19:46:55 -040046./rift-shell -r -- make rw.ext
47RC=$?
48
49if [ $RC == 0 ]; then
50 ./rift-shell -r -- make -j16
51 RC=$?
52fi
Jeremy Mordkoff19215382016-07-06 18:17:46 -040053
54INFO "done RC = $RC"
55exit $RC
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040056
57
58