Removing ODL build job, not needed for Fuel Autodeployment anymore 11/2111/1
authorSzilard Cserey <szilard.cserey@ericsson.com>
Tue, 29 Sep 2015 12:18:59 +0000 (14:18 +0200)
committerSzilard Cserey <szilard.cserey@ericsson.com>
Tue, 29 Sep 2015 12:18:59 +0000 (14:18 +0200)
Change-Id: Id6b5b6d22ed7d56e44b152e1e3233791dbe7ddd7
Signed-off-by: Szilard Cserey <szilard.cserey@ericsson.com>
jjb/genesis/genesis-fuel.yml

index 16fd76f..1b08fc8 100644 (file)
 
     builders:
         - 'fuel-download-artifact'
-        - 'fuel-odl-plugin-build'
         - 'fuel-deploy'
 
     publishers:
             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:
             # 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
 
             # 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 "--------------------------------------------------------"