X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fsystem%2Fstart_build;h=03fe9305695d1cfe2695e734c7608bd4e2a1adb3;hb=562e3210664e5f97014da76c9af843c58b66fc74;hp=7f259c723c3f2d9547905fcfcb821520a0521592;hpb=8f83069696a74f3fc9272a5c65d5e75e923e7ff9;p=osm%2Fdevops.git diff --git a/jenkins/system/start_build b/jenkins/system/start_build index 7f259c72..03fe9305 100755 --- a/jenkins/system/start_build +++ b/jenkins/system/start_build @@ -19,9 +19,11 @@ HERE=$(realpath $(dirname $0)) OSM_JENKINS=$(dirname $HERE) . $OSM_JENKINS/common/all_funcs +. $OSM_JENKINS/common/install_common INFO "Installing packages" apt-get update +apt-get install -y lxd INFO "Configuring LXD" # ZFS doesn't work inside a nested container. ZFS should be configured in the host LXD. @@ -51,13 +53,12 @@ EOF systemctl enable lxd-bridge systemctl start lxd-bridge -apt-get install -y python-pip python python-pycurl charm-tools python-pytest +apt-get install -y python-pip python python-pycurl charm-tools python-pytest python-openstackclient -# TODO: use package when available on osm repo -git clone https://osm.etsi.org/gerrit/osm/osmclient -pip install osmclient/. +apt-get install -y python-osmclient export OSM_USE_LOCAL_DEVOPS=true +echo "devops/installers/install_osm.sh --test $*" devops/installers/install_osm.sh --test $* RC=$? @@ -72,6 +73,8 @@ if [ $RC == 0 ]; then TO_ADD="export OSM_HOSTNAME=$SO_CONTAINER_IP" grep -q OSM_HOSTNAME ~/.bashrc && sed -i "s/.*OSM_HOSTNAME.*/$TO_ADD/" ~/.bashrc || echo -e "$TO_ADD\n$(cat ~/.bashrc)" > ~/.bashrc + TO_ADD="export OSM_RO_HOSTNAME=$RO_CONTAINER_IP" + grep -q OSM_RO_HOSTNAME ~/.bashrc && sed -i "s/.*OSM_RO_HOSTNAME.*/$TO_ADD/" ~/.bashrc || echo -e "$TO_ADD\n$(cat ~/.bashrc)" > ~/.bashrc fi INFO "done, RC=$RC"