system-config/modules/openstack_project/files/jenkins_job_builder/config/gearman-plugin.yaml
zaro0508 d1d6c79dae Add post job to publish build artifact to tarball.o.o
This commit adds a post job to deploy the gearman-plugin
artifact (gearman-plugin.hpi) to tarball.o.o

.gitignore
   ignore auto generated eclipse project file

modules/openstack_project/files/jenkins_job_builder/config/gearman-plugin.yaml
   the new gearman-plugin-tarball job (copied from gerrit.yaml)

modules/openstack_project/files/zuul/layout.yaml
   hook job into build system

Change-Id: I59d9e3b446646fd879d827fd0aeb35356865f4d0
Reviewed-on: https://review.openstack.org/24663
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
2013-03-21 13:36:53 +00:00

48 lines
945 B
YAML

- job:
name: gate-gearman-plugin-build
project-type: maven
node: quantal && !jclouds
triggers:
- zuul
prebuilders:
- gerrit-git-prep
maven:
maven-name: Maven3
root-module:
group-id: org.jenkins-ci.plugins
artifact-id: gearman-plugin
root-pom: pom.xml
goals: 'clean package'
publishers:
- console-log
- job:
name: gearman-plugin-tarball
project-type: maven
node: quantal && !jclouds
triggers:
- zuul-post
prebuilders:
- gerrit-git-prep
maven:
maven-name: Maven3
root-module:
group-id: org.jenkins-ci.plugins
artifact-id: gearman-plugin
root-pom: pom.xml
goals: 'clean package -Dmaven.test.skip=true'
publishers:
- war:
site: 'tarballs.openstack.org'
warfile: 'target/gearman-plugin.hpi'
target: 'tarballs/ci/'
- console-log-post