From 5793a29b75a10970a2ddff541385e9e05723ac77 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Thu, 4 Dec 2014 10:17:40 +0100 Subject: [PATCH] BUG-2471: create odlparent template odlparent jobs have no specific requirements, so this patch just adds the base template. Change-Id: Ibc18492ef0287d4cf5249ea50480a3b9b3ed754d Signed-off-by: Robert Varga --- jjb/odlparent/odlparent.yaml | 181 +++++++++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) create mode 100644 jjb/odlparent/odlparent.yaml diff --git a/jjb/odlparent/odlparent.yaml b/jjb/odlparent/odlparent.yaml new file mode 100644 index 0000000000..515d889b3e --- /dev/null +++ b/jjb/odlparent/odlparent.yaml @@ -0,0 +1,181 @@ +# REMOVE THIS LINE IF YOU WANT TO CUSTOMIZE ANYTHING BELOW +# Otherwise this file will be automatically overwritten by the template +# autobuilder. + +# ODL Releng build templates +- project: + name: odlparent + jobs: + - 'odlparent-verify-{stream}' + - 'odlparent-merge-{stream}' + - 'odlparent-daily-{stream}' + + # stream: branch with - in place of / (eg. stable-helium) + # branch: branch (eg. stable/helium) + stream: + - master: + branch: 'master' + - stable-helium: + branch: 'stable/helium' + + +# For the Job templates below replace instances of: +# PROJECT with your project name (eg. controller) +# MAVEN_GOALS with your maven goals to build +# MAVEN_OPTS with your maven options to build + +- job-template: + name: 'odlparent-verify-{stream}' + + # Job template for ODL verify jobs + # + # The purpose of this job template is to setup a ODL verify job + # + # Required Variables: + # stream: branch with - in place of / (eg. stable-helium) + # branch: branch (eg. stable/helium) + + project-type: maven + node: dynamic_verify + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + parameters: + - gerrit-parameter: + branch: '{branch}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + scm-url: 'ssh://jenkins-releng@git.opendaylight.org:29418/odlparent.git' + refspec: '$GERRIT_REFSPEC' + choosing-strategy: 'gerrit' + + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-submitted: + name: 'odlparent' + branch: '{branch}' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: '-Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo clean install' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{odlparent-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[odlparent]' + +- job-template: + name: 'odlparent-merge-{stream}' + + # Job template for ODL merge jobs + # + # The purpose of this job template is to setup a ODL merge job + # and deploy artifacts to Nexus. + # + # Required Variables: + # stream: branch with - in place of / (eg. stable-helium) + # branch: branch (eg. stable/helium) + + project-type: maven + node: dynamic_merge + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + scm-url: 'ssh://jenkins-releng@git.opendaylight.org:29418/odlparent.git' + refspec: '' + choosing-strategy: 'default' + + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-merged: + name: 'odlparent' + branch: '{branch}' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: '-Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo clean install' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{odlparent-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[odlparent]' + - maven-deploy: + id: '' + unique-version: true + deploy-unstable: false + +- job-template: + name: 'odlparent-daily-{stream}' + + # Job template for daily builders + # + # The purpose of this job template is to setup a daily/nightly + # builder and pushes to Sonar analysis. + # + # Required Variables: + # stream: branch with - in place of / (eg. stable-helium) + # branch: branch (eg. stable/helium) + + project-type: maven + node: dynamic_verify + + logrotate: + daysToKeep: '{build-days-to-keep}' + numToKeep: '{build-num-to-keep}' + artifactDaysToKeep: '{build-artifact-days-to-keep}' + artifactNumToKeep: '{build-artifact-num-to-keep}' + + scm: + - git-scm: + credentials-id: '{ssh-credentials}' + scm-url: 'ssh://jenkins-releng@git.opendaylight.org:29418/odlparent.git' + refspec: '' + branch: '{branch}' + + wrappers: + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - timed: 'H H * * *' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: '-Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo clean install' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{odlparent-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[odlparent]' + - sonar: + branch: '{stream}' + language: 'java' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' -- 2.36.6