blob: dd69799980c5d0daf9e984baf37900e5635b0aab [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# start-build is run on a host to start a MDG build
17#
18# 24 June 2016 -- Jeremy Mordkoff -- Genesis
19
20
21HERE=$(realpath $(dirname $0))
22OSM_JENKINS=$(dirname $HERE)
23. $OSM_JENKINS/common/all_funcs
24
25[ $# -eq 1 ] || FATAL "arg is MDG name"
26
27export OSM_MDG=$1
28OSM_load_config
29
30if ! container_exists $OSM_BUILD_CONTAINER; then
garciadeblasf937a8b2016-07-21 14:53:32 +020031 if [[ "$OSM_BUILD_CONTAINER_PRIVILEGED" == yes ]]; then
32 create_privileged_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER
33 else
34 create_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER
35 fi
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040036 wait_container_up $OSM_BUILD_CONTAINER
37 RE="fedora|fc[0-9]"
38 if [[ $OSM_BASE_IMAGE =~ $RE ]]; then
Jeremy Mordkoff5cf32162016-07-21 16:32:25 -040039 container_exec $OSM_BUILD_CONTAINER yum -y install git tar
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040040 else
garciadeblasf937a8b2016-07-21 14:53:32 +020041 container_exec $OSM_BUILD_CONTAINER apt -y install git realpath
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040042 fi
Jeremy Mordkoff5cf32162016-07-21 16:32:25 -040043 if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then
44 container_push_devops $OSM_BUILD_CONTAINER
45 else
46 container_exec $OSM_BUILD_CONTAINER git clone ${OSM_GIT_URL}/devops
47 fi
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040048else
Jeremy Mordkoff5cf32162016-07-21 16:32:25 -040049 if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then
50 container_push_devops $OSM_BUILD_CONTAINER
51 else
52 container_exec $OSM_BUILD_CONTAINER git -C devops pull
53 fi
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040054fi
55
Jeremy Mordkoff50c2e862016-06-24 15:26:41 -040056container_exec $OSM_BUILD_CONTAINER ./devops/jenkins/$OSM_MDG/start_build
Jeremy Mordkoff19215382016-07-06 18:17:46 -040057RC=$?
58INFO "$OSM_MDG build complete. Return code was $RC"
59exit $RC
garciadeblasf937a8b2016-07-21 14:53:32 +020060