From 67edeaa909b7876f8533dc3f1561d9a4307cf473 Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Sun, 20 Dec 2015 17:47:49 -0700 Subject: Initial Honeycomb JJB Commit Change-Id: I50e3c7534ade3f241848df5896190038d3cc3410 Signed-off-by: Ed Warnicke --- jjb/honeycomb/honeycomb.yaml | 109 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 jjb/honeycomb/honeycomb.yaml (limited to 'jjb/honeycomb') diff --git a/jjb/honeycomb/honeycomb.yaml b/jjb/honeycomb/honeycomb.yaml new file mode 100644 index 000000000..4154c0a51 --- /dev/null +++ b/jjb/honeycomb/honeycomb.yaml @@ -0,0 +1,109 @@ +- project: + name: honeycomb + jobs: + - 'honeycomb-verify' + - 'honeycomb-merge' + project: 'honyecomb' + branch: 'master' + +- job-template: + name: 'honeycomb-verify' + project-type: maven + node: verify + concurrent: true + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + parameters: + - project-parameter: + project: '{project}' + - gerrit-parameter: + branch: '{branch}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '$GERRIT_REFSPEC' + choosing-strategy: 'gerrit' + + wrappers: + - build-timeout + - ssh-agent-credentials: + users: + - '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-submitted: + name: 'honeycomb' + branch: '{branch}' + + maven: + maven-name: '{mvn33}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r -Dmerge' + maven-opts: '-Xmx2048m -XX:MaxPermSize=256m -Dmaven.compile.fork=true' + settings: '{honeycomb-settings}' + global-settings: '{global-settings}' + + publishers: + - findbugs + - email-notification: + email-prefix: '[honeycomb]' + - jacoco-report + +- job-template: + name: 'honeycomb-merge' + project-type: maven + node: merge + jdk: '{jdk}' + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + parameters: + - project-parameter: + project: '{project}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + choosing-strategy: 'default' + + wrappers: + - build-timeout + - ssh-agent-credentials: + users: + - '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-merged: + name: 'honeycomb' + branch: '{branch}' + + maven: + maven-name: '{mvn33}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r -Dmerge' + maven-opts: '-Xmx2048m -XX:MaxPermSize=256m -Dmaven.compile.fork=true' + settings: '{honeycomb-settings}' + global-settings: '{global-settings}' + + reporters: + - findbugs + + publishers: + - email-notification: + email-prefix: '[honeycomb]' + - maven-deploy: + id: '' + unique-version: true + deploy-unstable: false + -- cgit 1.2.3-korg