Adding missing dependencies into collect-ceilometer-plugin.yaml

- added dependency on openstack/gnocchi plugin
- added dependency on openstack/ceilometer plugin
- added dependency on openstack/aodh plugin

Change-Id: Ib7f5fc1228a234cd0f56dda9fc9548b4574e3fb0
This commit is contained in:
Michal Ptacek 2017-04-07 14:55:10 +01:00
parent 20c91b716a
commit 338ced9b63

View File

@ -20,7 +20,10 @@
- local_conf:
conf: |
[[local|localrc]]
enable_plugin aodh git://git.openstack.org/openstack/aodh
enable_plugin ceilometer git://git.openstack.org/openstack/ceilometer
enable_plugin collectd-ceilometer-plugin git://git.openstack.org/openstack/collectd-ceilometer-plugin
enable_plugin gnocchi git://git.openstack.org/openstack/gnocchi
- shell: |
#!/bin/bash -xe
export BRANCH_OVERRIDE={branch-override}
@ -28,11 +31,12 @@
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi
# Because we are testing a non standard project, add
# our project repository. This makes zuul do the right
# reference magic for testing changes.
# We need to add those projects into repository, they are not available by default
# and we are using all of them in our plugin
export PROJECTS="openstack/aodh $PROJECTS"
export PROJECTS="openstack/ceilometer $PROJECTS"
export PROJECTS="openstack/collectd-ceilometer-plugin $PROJECTS"
export PROJECTS="openstack/gnocchi $PROJECTS"
# Keep localrc to be able to set some vars in pre_test_hook
export KEEP_LOCALRC=1