diff --git a/jenkins/jobs/collectd-ceilometer-plugin.yaml b/jenkins/jobs/collectd-ceilometer-plugin.yaml index 0e08093853..47e5f70af9 100644 --- a/jenkins/jobs/collectd-ceilometer-plugin.yaml +++ b/jenkins/jobs/collectd-ceilometer-plugin.yaml @@ -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