Niall Bunting 6ee7c4cda8 Fix glance store experimental test
I'm not too familiar with this side of the code. I noticed a few other
tests have this line and the glance_store functional tests are missing it.

The error is that "The following LIBS_FROM_GIT were not installed
correct:  glance_store". From the latest check experimental on this patch:
https://review.openstack.org/#/c/302374/

Change-Id: I11a6d898ea3ee3b28c974cc6b99c9c9d87ef9e99
2016-04-15 15:00:56 +00:00

80 lines
2.3 KiB
YAML

- job-template:
name: '{pipeline}-glanceclient-dsvm-functional{job-suffix}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 70
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export BRANCH_OVERRIDE={branch-override}
export PROJECTS="openstack/python-glanceclient $PROJECTS"
export DEVSTACK_PROJECT_FROM_GIT=python-glanceclient
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
function post_test_hook {{
# Configure and run functional tests
$BASE/new/python-glanceclient/glanceclient/tests/functional/hooks/post_test_hook.sh
}}
export -f post_test_hook
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}-glance_store-dsvm-functional-{driver}'
node: '{node}'
wrappers:
- build-timeout:
timeout: 70
- timestamps
builders:
- link-logs
- net-info
- devstack-checkout
- shell: |
#!/bin/bash -xe
export PYTHONUNBUFFERED=true
export BRANCH_OVERRIDE={branch-override}
export PROJECTS="openstack/glance_store $PROJECTS"
export DEVSTACK_PROJECT_FROM_GIT=glance_store
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
function gate_hook {{
cd $BASE/new/glance_store/glance_store/tests/functional/hooks
./gate_hook.sh {driver}
}}
export -f gate_hook
function post_test_hook {{
cd $BASE/new/glance_store/glance_store/tests/functional/hooks
./post_test_hook.sh {driver}
}}
export -f post_test_hook
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