From b3963ecc6e1e2eb618a78c0881dfddef663ab212 Mon Sep 17 00:00:00 2001 From: Szilard Cserey Date: Tue, 29 Sep 2015 14:18:59 +0200 Subject: Removing ODL build job, not needed for Fuel Autodeployment anymore Change-Id: Id6b5b6d22ed7d56e44b152e1e3233791dbe7ddd7 Signed-off-by: Szilard Cserey --- jjb/genesis/genesis-fuel.yml | 51 ++------------------------------------------ 1 file changed, 2 insertions(+), 49 deletions(-) diff --git a/jjb/genesis/genesis-fuel.yml b/jjb/genesis/genesis-fuel.yml index 16fd76f44..1b08fc825 100644 --- a/jjb/genesis/genesis-fuel.yml +++ b/jjb/genesis/genesis-fuel.yml @@ -380,7 +380,6 @@ builders: - 'fuel-download-artifact' - - 'fuel-odl-plugin-build' - 'fuel-deploy' publishers: @@ -530,51 +529,6 @@ echo "--------------------------------------------------------" echo "Done!" -- builder: - name: 'fuel-odl-plugin-build' - builders: - - shell: | - #!/bin/bash - set -o errexit - set -o nounset - set -o pipefail - - # install dependencies if they are not available already - 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 [[ ! $(pip list | grep fuel-plugin-builder) ]]; then - echo "fuel-plugin-builder not found, but required for Fuel Plugin build ... attempting to install" - sudo pip install fuel-plugin-builder - fi - - # 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: @@ -601,7 +555,6 @@ # set CONFDIR, BRIDGE 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 @@ -616,8 +569,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 -p $PLUGIN -nh" - sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE -p $PLUGIN -nh + echo "sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE -nh" + sudo $WORKSPACE/fuel/ci/deploy.sh -iso $WORKSPACE/opnfv.iso -dea $CONFDIR/dea.yaml -dha $CONFDIR/dha.yaml -s $TMPDIR -b $BRIDGE -nh echo echo "--------------------------------------------------------" -- cgit 1.2.3-korg