From: Jeremy Mordkoff Date: Tue, 13 Sep 2016 14:40:15 +0000 (-0400) Subject: make sure that sudo and make are installed before invoking the MDG build script X-Git-Tag: v1.0.0~22 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;ds=sidebyside;h=158d1d3b49a43bbe71588a58d8875e2485521f18;hp=9713ede3423f7f53bc52cc8b8c7f6eb601b6d30b;p=osm%2Fdevops.git make sure that sudo and make are installed before invoking the MDG build script Signed-off-by: Jeremy Mordkoff --- diff --git a/jenkins/host/start_build b/jenkins/host/start_build index 555b8a26..d026fae1 100755 --- a/jenkins/host/start_build +++ b/jenkins/host/start_build @@ -37,9 +37,9 @@ if ! container_exists $OSM_BUILD_CONTAINER; then 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 + 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