project-config/jenkins/jobs/cloudkitty.yaml
Jeremy Liu 2baed78014 Change repo url for cloudkitty
'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
2017-02-23 16:33:07 +08:00

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