Add apache-configured devstack tempest test

Add the template for {pipeline}-tempest-dsvm-full-apache-services
and add it to the devstack-jobs project. This allows for a check/gate
that configures services running under mod_wsgi.

Change-Id: I80af05a0edef5471dc761ba18bb5b2c2f0e6e032
This commit is contained in:
Morgan Fainberg 2014-05-01 22:19:52 -07:00
parent 79cd2bd745
commit 84833a2646

View File

@ -125,6 +125,38 @@
- devstack-logs
- console-log
- job-template:
name: '{pipeline}-tempest-dsvm-full-apache-services{branch-designator}'
node: '{node}'
wrappers:
- timeout:
timeout: 125
fail: true
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TIMEOUT=120
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_TEMPEST_FULL=1
export DEVSTACK_GATE_USE_APACHE=1
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:
- devstack-logs
- console-log
- job-template:
name: '{pipeline}-tempest-master-dsvm-full{branch-designator}'
node: '{node}'
@ -1238,3 +1270,4 @@
- '{pipeline}-tempest-dsvm-neutron-full-non-isolated{branch-designator}'
- '{pipeline}-tempest-dsvm-keystonev3-full{branch-designator}'
- '{pipeline}-tempest-dsvm-neutron-keystonev3-full{branch-designator}'
- '{pipeline}-tempest-dsvm-full-apache-services{branch-designator}'