| 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 | # start-build is run on a host to start a MDG build |
| 17 | # |
| 18 | # 24 June 2016 -- Jeremy Mordkoff -- Genesis |
| 19 | |
| 20 | |
| 21 | HERE=$(realpath $(dirname $0)) |
| 22 | OSM_JENKINS=$(dirname $HERE) |
| 23 | . $OSM_JENKINS/common/all_funcs |
| 24 | |
| garciadeblas | 8917310 | 2016-08-31 15:05:33 +0200 | [diff] [blame] | 25 | [ $# -lt 1 ] && FATAL "arg is MDG name" |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 26 | |
| 27 | export OSM_MDG=$1 |
| garciadeblas | a8cbb91 | 2016-08-31 14:47:41 +0200 | [diff] [blame] | 28 | shift |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 29 | OSM_load_config |
| 30 | |
| 31 | if ! container_exists $OSM_BUILD_CONTAINER; then |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 32 | if [[ "$OSM_BUILD_CONTAINER_PRIVILEGED" == yes ]]; then |
| 33 | create_privileged_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER |
| 34 | else |
| 35 | create_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER |
| 36 | fi |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 37 | wait_container_up $OSM_BUILD_CONTAINER |
| 38 | RE="fedora|fc[0-9]" |
| 39 | if [[ $OSM_BASE_IMAGE =~ $RE ]]; then |
| Jeremy Mordkoff | 5cf3216 | 2016-07-21 16:32:25 -0400 | [diff] [blame] | 40 | container_exec $OSM_BUILD_CONTAINER yum -y install git tar |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 41 | else |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 42 | container_exec $OSM_BUILD_CONTAINER apt -y install git realpath |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 43 | fi |
| Jeremy Mordkoff | 5cf3216 | 2016-07-21 16:32:25 -0400 | [diff] [blame] | 44 | if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then |
| 45 | container_push_devops $OSM_BUILD_CONTAINER |
| 46 | else |
| 47 | container_exec $OSM_BUILD_CONTAINER git clone ${OSM_GIT_URL}/devops |
| 48 | fi |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 49 | else |
| Jeremy Mordkoff | 5cf3216 | 2016-07-21 16:32:25 -0400 | [diff] [blame] | 50 | if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then |
| 51 | container_push_devops $OSM_BUILD_CONTAINER |
| 52 | else |
| 53 | container_exec $OSM_BUILD_CONTAINER git -C devops pull |
| 54 | fi |
| Jeremy Mordkoff | 50c2e86 | 2016-06-24 15:26:41 -0400 | [diff] [blame] | 55 | fi |
| 56 | |
| garciadeblas | a8cbb91 | 2016-08-31 14:47:41 +0200 | [diff] [blame] | 57 | container_exec $OSM_BUILD_CONTAINER ./devops/jenkins/$OSM_MDG/start_build $* |
| Jeremy Mordkoff | 1921538 | 2016-07-06 18:17:46 -0400 | [diff] [blame] | 58 | RC=$? |
| 59 | INFO "$OSM_MDG build complete. Return code was $RC" |
| 60 | exit $RC |
| garciadeblas | f937a8b | 2016-07-21 14:53:32 +0200 | [diff] [blame] | 61 | |