2baed78014
'https://github.com/stackforge/cloudkitty' is linked to 'https://github.com/openstack/cloudkitty', so use the latter instead. Same work is done for manila as well. Change-Id: I252068c4e1a05938942ed48d5706a482ab9f43fe
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
- job-template:
|
|
name: '{pipeline}-cloudkitty-dsvm-install-{node}{suffix}'
|
|
node: '{node}'
|
|
|
|
wrappers:
|
|
- timeout:
|
|
timeout: 120
|
|
- timestamps
|
|
|
|
builders:
|
|
- devstack-checkout
|
|
- shell: |
|
|
#!/bin/bash -xe
|
|
DEVSTACK_LOCAL_CONFIG="enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer"
|
|
DEVSTACK_LOCAL_CONFIG+=$'\n'"enable_plugin cloudkitty https://github.com/openstack/cloudkitty master"
|
|
|
|
export DEVSTACK_LOCAL_CONFIG
|
|
export PROJECTS="openstack/cloudkitty $PROJECTS"
|
|
export PROJECTS="openstack/python-cloudkittyclient $PROJECTS"
|
|
export PROJECTS="openstack/cloudkitty-dashboard $PROJECTS"
|
|
|
|
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
|