X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fhost%2Fstart_build;h=45d495f2a052e2b60413238be48b32eaaacadcc9;hb=35d6f24fc8d9e35c1dd2f1853c6796d57c7faf8e;hp=c3df393d75505012e1e1cd74e6b17517cd48c23c;hpb=a8cbb9194d6b791d58c631d23a655ea94623d037;p=osm%2Fdevops.git diff --git a/jenkins/host/start_build b/jenkins/host/start_build index c3df393d..45d495f2 100755 --- a/jenkins/host/start_build +++ b/jenkins/host/start_build @@ -1,5 +1,6 @@ #!/bin/bash # Copyright 2016 RIFT.IO Inc +# Copyright 2016 Telefónica Investigación y Desarrollo S.A.U. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,42 +17,42 @@ # start-build is run on a host to start a MDG build # # 24 June 2016 -- Jeremy Mordkoff -- Genesis +# -- Gerardo Garcia HERE=$(realpath $(dirname $0)) OSM_JENKINS=$(dirname $HERE) . $OSM_JENKINS/common/all_funcs -[ $# -eq 1 ] || FATAL "arg is MDG name" +[ $# -lt 1 ] && FATAL "arg is MDG name" export OSM_MDG=$1 shift OSM_load_config if ! container_exists $OSM_BUILD_CONTAINER; then - if [[ "$OSM_BUILD_CONTAINER_PRIVILEGED" == yes ]]; then - create_privileged_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER - else - create_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER - fi + CONTAINER_OPTS="" + [[ "$OSM_BUILD_CONTAINER_PRIVILEGED" == yes ]] && CONTAINER_OPTS="$CONTAINER_OPTS -c security.privileged=true" + [[ "$OSM_BUILD_CONTAINER_ALLOW_NESTED" == yes ]] && CONTAINER_OPTS="$CONTAINER_OPTS -c security.nesting=true" + create_container $OSM_BASE_IMAGE $OSM_BUILD_CONTAINER $CONTAINER_OPTS wait_container_up $OSM_BUILD_CONTAINER RE="fedora|fc[0-9]" if [[ $OSM_BASE_IMAGE =~ $RE ]]; then - container_exec $OSM_BUILD_CONTAINER yum -y install git tar + container_exec $OSM_BUILD_CONTAINER yum -y install git tar make sudo + else + container_exec $OSM_BUILD_CONTAINER apt -y install git realpath make sudo + fi + if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then + container_push_devops $OSM_BUILD_CONTAINER else - container_exec $OSM_BUILD_CONTAINER apt -y install git realpath + container_exec $OSM_BUILD_CONTAINER git clone ${OSM_GIT_URL}/devops fi - if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then - container_push_devops $OSM_BUILD_CONTAINER - else - container_exec $OSM_BUILD_CONTAINER git clone ${OSM_GIT_URL}/devops - fi else - if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then - container_push_devops $OSM_BUILD_CONTAINER - else - container_exec $OSM_BUILD_CONTAINER git -C devops pull - fi + if [ ${OSM_USE_LOCAL_DEVOPS:-false} ]; then + container_push_devops $OSM_BUILD_CONTAINER + else + container_exec $OSM_BUILD_CONTAINER git -C devops pull + fi fi container_exec $OSM_BUILD_CONTAINER ./devops/jenkins/$OSM_MDG/start_build $*