3f8ab0b394
gnocchi 2.0 was released. we need to enable it to be supported in gate Change-Id: Ifc18b4c5b47bd3a1cc96d226284aeadefbbc5add
45 lines
1.4 KiB
YAML
45 lines
1.4 KiB
YAML
- job-template:
|
|
name: '{pipeline}-gnocchi-dsvm-functional-{storagedriver}-{sqldriver}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- build-timeout:
|
|
timeout: 100
|
|
- timestamps
|
|
|
|
builders:
|
|
- link-logs
|
|
- net-info
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
export PYTHONUNBUFFERED=true
|
|
export PROJECTS="openstack/gnocchi $PROJECTS"
|
|
export DEVSTACK_LOCAL_CONFIG="enable_plugin gnocchi git://git.openstack.org/openstack/gnocchi"
|
|
|
|
case "$ZUUL_BRANCH" in
|
|
"stable/1.0"|"stable/1.1"|"stable/1.2") export OVERRIDE_ZUUL_BRANCH=stable/kilo ;;
|
|
"stable/1.3") export OVERRIDE_ZUUL_BRANCH=stable/liberty ;;
|
|
"stable/2.0") export OVERRIDE_ZUUL_BRANCH=master ;;
|
|
esac
|
|
|
|
function gate_hook {{
|
|
cd /opt/stack/new/gnocchi/devstack/gate
|
|
./gate_hook.sh {storagedriver} {sqldriver}
|
|
}}
|
|
export -f gate_hook
|
|
|
|
function post_test_hook {{
|
|
cd /opt/stack/new/gnocchi/devstack/gate
|
|
./post_test_hook.sh {storagedriver} {sqldriver}
|
|
}}
|
|
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
|