Add zmq-event-publisher Jenkins plugin to Gerrit.
Create a new project under openstack-infra for the zmq-event-publisher Jenkins plugin. We are actually beginning to use this plugin for logstash so it should follow our normal processes for code review and merging. The gearman-plugin project uses the same sort of build and package steps so these Jenkins jobs have been converted to a set of templates in a job group that both plugins can use. Change-Id: I2bab79506119b1c04a8e9d48bc66f1a609426324 Reviewed-on: https://review.openstack.org/26872 Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Reviewed-by: Khai Do <zaro0508@gmail.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Approved: Clark Boylan <clark.boylan@gmail.com> Tested-by: Jenkins
This commit is contained in:
parent
845bdc7a35
commit
98878bdd81
@ -0,0 +1,11 @@
|
|||||||
|
[access "refs/heads/*"]
|
||||||
|
label-Code-Review = -2..+2 group openstack-ci-core
|
||||||
|
label-Approved = +0..+1 group openstack-ci-core
|
||||||
|
workInProgress = group openstack-ci-core
|
||||||
|
[project]
|
||||||
|
state = active
|
||||||
|
[receive]
|
||||||
|
requireChangeId = true
|
||||||
|
requireContributorAgreement = true
|
||||||
|
[submit]
|
||||||
|
mergeContent = true
|
@ -1,5 +1,5 @@
|
|||||||
- job:
|
- job-template:
|
||||||
name: gate-gearman-plugin-build
|
name: 'gate-{name}-build'
|
||||||
project-type: maven
|
project-type: maven
|
||||||
node: quantal && !jclouds
|
node: quantal && !jclouds
|
||||||
|
|
||||||
@ -12,16 +12,16 @@
|
|||||||
maven:
|
maven:
|
||||||
maven-name: Maven3
|
maven-name: Maven3
|
||||||
root-module:
|
root-module:
|
||||||
group-id: org.jenkins-ci.plugins
|
group-id: '{maven-group-id}'
|
||||||
artifact-id: gearman-plugin
|
artifact-id: '{name}'
|
||||||
root-pom: pom.xml
|
root-pom: pom.xml
|
||||||
goals: 'clean package'
|
goals: 'clean package'
|
||||||
|
|
||||||
publishers:
|
publishers:
|
||||||
- console-log
|
- console-log
|
||||||
|
|
||||||
- job:
|
- job-template:
|
||||||
name: gearman-plugin-tarball
|
name: '{name}-hpi-artifact'
|
||||||
project-type: maven
|
project-type: maven
|
||||||
node: quantal && !jclouds
|
node: quantal && !jclouds
|
||||||
|
|
||||||
@ -34,14 +34,20 @@
|
|||||||
maven:
|
maven:
|
||||||
maven-name: Maven3
|
maven-name: Maven3
|
||||||
root-module:
|
root-module:
|
||||||
group-id: org.jenkins-ci.plugins
|
group-id: '{maven-group-id}'
|
||||||
artifact-id: gearman-plugin
|
artifact-id: '{name}'
|
||||||
root-pom: pom.xml
|
root-pom: pom.xml
|
||||||
goals: 'clean package -Dmaven.test.skip=true'
|
goals: 'clean package -Dmaven.test.skip=true'
|
||||||
|
|
||||||
publishers:
|
publishers:
|
||||||
- war:
|
- war:
|
||||||
site: 'tarballs.openstack.org'
|
site: 'tarballs.openstack.org'
|
||||||
warfile: 'target/gearman-plugin.hpi'
|
warfile: 'target/{name}.hpi'
|
||||||
target: 'tarballs/ci/'
|
target: 'tarballs/ci/'
|
||||||
- console-log-post
|
- console-log-post
|
||||||
|
|
||||||
|
- job-group:
|
||||||
|
name: jenkins-plugin-jobs
|
||||||
|
jobs:
|
||||||
|
- 'gate-{name}-build'
|
||||||
|
- '{name}-hpi-artifact'
|
@ -171,10 +171,25 @@
|
|||||||
|
|
||||||
- project:
|
- project:
|
||||||
name: gearman-plugin
|
name: gearman-plugin
|
||||||
|
maven-group-id: org.jenkins-ci.plugins
|
||||||
github-org: openstack-infra
|
github-org: openstack-infra
|
||||||
node: quantal
|
node: quantal
|
||||||
tarball-site: tarballs.openstack.org
|
tarball-site: tarballs.openstack.org
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- jenkins-plugin-jobs
|
||||||
|
|
||||||
|
|
||||||
|
- project:
|
||||||
|
name: zmq-event-publisher
|
||||||
|
maven-group-id: org.jenkins-ci.plugins
|
||||||
|
github-org: openstack-infra
|
||||||
|
node: quantal
|
||||||
|
tarball-site: tarballs.openstack.org
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- jenkins-plugin-jobs
|
||||||
|
|
||||||
|
|
||||||
- project:
|
- project:
|
||||||
name: git-review
|
name: git-review
|
||||||
|
@ -1465,7 +1465,15 @@ projects:
|
|||||||
gate:
|
gate:
|
||||||
- gate-gearman-plugin-build
|
- gate-gearman-plugin-build
|
||||||
post:
|
post:
|
||||||
- gearman-plugin-tarball
|
- gearman-plugin-hpi-artifact
|
||||||
|
|
||||||
|
- name: openstack-infra/zmq-event-publisher
|
||||||
|
check:
|
||||||
|
- gate-zmq-event-publisher-build
|
||||||
|
gate:
|
||||||
|
- gate-zmq-event-publisher-build
|
||||||
|
post:
|
||||||
|
- zmq-event-publisher-hpi-artifact
|
||||||
|
|
||||||
- name: stackforge/database-api
|
- name: stackforge/database-api
|
||||||
check:
|
check:
|
||||||
|
@ -44,6 +44,9 @@
|
|||||||
description: OpenStack code review report generator
|
description: OpenStack code review report generator
|
||||||
- project: openstack-infra/statusbot
|
- project: openstack-infra/statusbot
|
||||||
description: Infrastructure status update IRC bot
|
description: Infrastructure status update IRC bot
|
||||||
|
- project: openstack-infra/zmq-event-publisher
|
||||||
|
description: Jenkins plugin to publish build events via ZMQ PUB SUB.
|
||||||
|
upstream: git://github.com/cboylan/zmq-event-publisher.git
|
||||||
- project: openstack-infra/zuul
|
- project: openstack-infra/zuul
|
||||||
- project: openstack-dev/devstack
|
- project: openstack-dev/devstack
|
||||||
- project: openstack-dev/grenade
|
- project: openstack-dev/grenade
|
||||||
|
Loading…
Reference in New Issue
Block a user