From f875d7938f019110a53c1726789d3996b3c1ba05 Mon Sep 17 00:00:00 2001 From: Szilard Cserey Date: Fri, 18 Sep 2015 16:37:28 +0200 Subject: New job for Fuel Plugin Build Update of Fuel Deploy job - for fetching the newly build Fuel Plugin Change-Id: I983f4244739370510012ddf6445667f53def3734 Signed-off-by: Szilard Cserey --- jjb/genesis/genesis-fuel.yml | 37 +++++++++++++++++++++++++++--- utils/lab-reconfiguration/create_venv.sh | 10 ++++++++ utils/lab-reconfiguration/requirements.pip | 1 + 3 files changed, 45 insertions(+), 3 deletions(-) diff --git a/jjb/genesis/genesis-fuel.yml b/jjb/genesis/genesis-fuel.yml index 405fbc0ad..f99fa9308 100644 --- a/jjb/genesis/genesis-fuel.yml +++ b/jjb/genesis/genesis-fuel.yml @@ -374,6 +374,7 @@ builders: - 'fuel-download-artifact' + - 'fuel-opendaylight-plugin-build' - 'fuel-deploy' publishers: @@ -523,6 +524,35 @@ echo "--------------------------------------------------------" echo "Done!" +- builder: + name: 'fuel-opendaylight-plugin-build' + builders: + - shell: | + #!/bin/bash + set -o errexit + set -o nounset + set -o pipefail + + # log info to console + echo "Starting the build of Fuel Opendaylight Plugin. This could take some time..." + echo "--------------------------------------------------------" + echo + + export ODL_PLUGIN_BRANCH="juno/lithium-sr1" + + cd $WORKSPACE + git clone https://github.com/stackforge/fuel-plugin-opendaylight + + pushd $WORKSPACE/fuel-plugin-opendaylight + git checkout $ODL_PLUGIN_BRANCH + popd + + fpb --build fuel-plugin-opendaylight/ + + echo + echo "--------------------------------------------------------" + echo "Done!" + - builder: name: 'fuel-deploy' builders: @@ -547,8 +577,9 @@ chmod a+x $TMPDIR # set CONFDIR, BRIDGE - export CONFDIR=$WORKSPACE/fuel/deploy/templates/hardware_environment/old_conf/linux_foundation_lab/pod2/ha + export CONFDIR=$WORKSPACE/fuel/deploy/templates/hardware_environment/conf/linux_foundation_lab/pod2 export BRIDGE=pxebr + export PLUGIN=$WORKSPACE/fuel-plugin-opendaylight # cleanup first sudo $WORKSPACE/common/ci/clean.sh -base_config $WORKSPACE/foreman/ci/inventory/lf_pod2_ksgen_settings.yml @@ -563,8 +594,8 @@ # start the deployment echo "Issuing command" - echo "sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE" - sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE + echo "sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE -p $PLUGIN" + sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE -p $PLUGIN echo echo "--------------------------------------------------------" diff --git a/utils/lab-reconfiguration/create_venv.sh b/utils/lab-reconfiguration/create_venv.sh index 4e45f8462..e94b22b1b 100755 --- a/utils/lab-reconfiguration/create_venv.sh +++ b/utils/lab-reconfiguration/create_venv.sh @@ -30,6 +30,16 @@ if [[ ! $(rpm -qa | grep python-2.7) ]]; then sudo yum install -y python-2.7* fi +if [[ ! $(rpm -qa | grep rubygems) ]]; then + echo "Rubygems not found, but required for Fuel Plugin build ... attempting to install" + sudo yum install -y rubygems ruby-devel +fi + +if [[ ! $(gem list | grep fpm) ]]; then + echo "fpm gem not found, but required for Fuel Plugin build ... attempting to install" + sudo gem install fpm +fi + if [ ! -f "$BASEDIR/venv/updated" -o $BASEDIR/requirements.pip -nt $BASEDIR/venv/updated ]; then source $BASEDIR/venv/bin/activate pip install -r $BASEDIR/requirements.pip diff --git a/utils/lab-reconfiguration/requirements.pip b/utils/lab-reconfiguration/requirements.pip index 8cd1db0ba..dd3207b0e 100644 --- a/utils/lab-reconfiguration/requirements.pip +++ b/utils/lab-reconfiguration/requirements.pip @@ -1,2 +1,3 @@ UcsSdk==0.8.2.2 PyYAML +fuel-plugin-builder \ No newline at end of file -- cgit 1.2.3-korg