Fixed install_from_source to add iptables-persistent package
[osm/devops.git] / jenkins / riftware / start_build
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
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
39         INFO "cloning MDG riftware from $OSM_GIT_URL/riftware"
40     # these were missing once, so just to be safe, install them again here
41     yum -y install cmake wget lcov
42         git clone $OSM_GIT_URL/riftware
43         cd riftware
44 fi
45
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
53
54 INFO "done RC = $RC"
55 exit $RC
56
57
58