8783a84829
The following aodh commit requires mysql>=5.6.4, causing
congress jenkins job failures when trusty node is used.
So we specify xenial node.
f8d3068bd2 (diff-6f7ec000163298dd067c3235a378b765)
Change-Id: I11e81d84b3a7c8e4ab673ac2aba8b73d9f537b1f
122 lines
4.9 KiB
YAML
122 lines
4.9 KiB
YAML
- job-template:
|
|
name: '{pipeline}-congress-dsvm-api-{node}{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 70
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
ENABLED_SERVICES=s-proxy,s-object,s-container,s-account,
|
|
ENABLED_SERVICES+=h-eng,h-api,h-api-cfn,h-api-cw
|
|
|
|
DEVSTACK_LOCAL_CONFIG="enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer"
|
|
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="congress_tempest_tests"
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export PROJECTS="openstack/congress $PROJECTS"
|
|
export PROJECTS="openstack/python-congressclient $PROJECTS"
|
|
export DEVSTACK_PROJECT_FROM_GIT=python-congressclient
|
|
export PROJECTS="openstack/murano $PROJECTS"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export PROJECTS="openstack/murano-dashboard $PROJECTS"
|
|
export PROJECTS="openstack/python-muranoclient $PROJECTS"
|
|
export PROJECTS="openstack/python-aodhclient $PROJECTS"
|
|
|
|
if [[ "$ZUUL_BRANCH" == "stable/liberty" ]]; then
|
|
# Liberty version uses the older 'hooks' approach to adding
|
|
# the congress plugin
|
|
ENABLED_SERVICES+=,congress
|
|
# Liberty doesn't support tempest plugin
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=0
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="congress"
|
|
function pre_test_hook {{
|
|
# Install congress-devstack and congress-tempest integration
|
|
cp -r $BASE/new/congress/contrib/devstack/* $BASE/new/devstack/
|
|
cp -r $BASE/new/congress/contrib/tempest/* $BASE/new/tempest/
|
|
}}
|
|
export -f pre_test_hook
|
|
else
|
|
# Enable congress devstack plugin.
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin congress git://git.openstack.org/openstack/congress"
|
|
# To be enabled for Mitaka and later
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin murano git://git.openstack.org/openstack/murano"
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin aodh git://git.openstack.org/openstack/aodh"
|
|
# To deploy congress as multi-process (api, pe, datasources)
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"CONGRESS_MULTIPROCESS_DEPLOYMENT=True"
|
|
fi
|
|
|
|
export ENABLED_SERVICES
|
|
export DEVSTACK_LOCAL_CONFIG
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- test-results
|
|
- devstack-logs
|
|
- console-log
|
|
|
|
- job-template:
|
|
name: '{pipeline}-congress-pe-replicated{job-suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 60
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
ENABLED_SERVICES=s-proxy,s-object,s-container,s-account,
|
|
ENABLED_SERVICES+=h-eng,h-api,h-api-cfn,h-api-cw
|
|
|
|
DEVSTACK_LOCAL_CONFIG="enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer"
|
|
|
|
export ENABLED_SERVICES
|
|
export PYTHONUNBUFFERED=true
|
|
export DEVSTACK_GATE_TEMPEST=1
|
|
export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="congress_tempest_tests"
|
|
export DEVSTACK_GATE_NEUTRON=1
|
|
export PROJECTS="openstack/congress $PROJECTS"
|
|
export PROJECTS="openstack/python-congressclient $PROJECTS"
|
|
export PROJECTS="openstack/python-aodhclient $PROJECTS"
|
|
export PROJECTS="openstack/aodh $PROJECTS"
|
|
export DEVSTACK_PROJECT_FROM_GIT=python-congressclient
|
|
# Enable congress devstack plugin.
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin congress git://git.openstack.org/openstack/congress"
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin aodh git://git.openstack.org/openstack/aodh"
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"CONGRESS_REPLICATED=True"
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"CONGRESS_MULTIPROCESS_DEPLOYMENT=True"
|
|
export DEVSTACK_LOCAL_CONFIG
|
|
export BRANCH_OVERRIDE={branch-override}
|
|
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
|
|
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
|
|
fi
|
|
|
|
cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh
|
|
./safe-devstack-vm-gate-wrap.sh
|
|
|
|
publishers:
|
|
- test-results
|
|
- devstack-logs
|
|
- console-log
|