From c766c94070a966c4f094f6131381bd7852dbf40e Mon Sep 17 00:00:00 2001 From: Al Harrington Date: Tue, 13 Jan 2015 11:09:20 -0800 Subject: [PATCH] Adding the AAA project - to move from it's own silo. Change-Id: I1efd1322a7b70521f465a3cea7369fe79bb6c263 Signed-off-by: Al Harrington --- jjb/aaa/aaa.yaml | 254 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 254 insertions(+) create mode 100644 jjb/aaa/aaa.yaml diff --git a/jjb/aaa/aaa.yaml b/jjb/aaa/aaa.yaml new file mode 100644 index 000000000..ac1a71685 --- /dev/null +++ b/jjb/aaa/aaa.yaml @@ -0,0 +1,254 @@ +# 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: aaa + jobs: + - 'aaa-verify-{stream}' + - 'aaa-merge-{stream}' + - 'aaa-daily-{stream}' + - 'aaa-integration-{stream}' + + # stream: branch with - in place of / (eg. stable-helium) + # branch: branch (eg. stable/helium) + stream: + - master: + branch: 'master' + - stable-helium: + branch: 'stable/helium' + + project: 'aaa' + jdk: 'openjdk7' + +# 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: 'aaa-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 + concurrent: true + 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}' + - gerrit-parameter: + branch: '{branch}' + + scm: + - gerrit-trigger-scm: + credentials-id: '{ssh-credentials}' + refspec: '$GERRIT_REFSPEC' + choosing-strategy: 'gerrit' + + wrappers: + - build-timeout + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-submitted: + name: 'aaa' + branch: '{branch}' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo ' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{aaa-settings}' + global-settings: '{odl-global-settings}' + ignore-upstream-changes: true + + publishers: + - email-notification: + email-prefix: '[aaa]' + +- job-template: + name: 'aaa-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 + 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: + user: '{ssh-credentials}' + + triggers: + - gerrit-trigger-patch-merged: + name: 'aaa' + branch: '{branch}' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo ' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{aaa-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[aaa]' + - maven-deploy: + id: '' + unique-version: true + deploy-unstable: false + +- job-template: + name: 'aaa-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 + 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: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: '{branch}' + + wrappers: + - build-timeout + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - timed: 'H H * * *' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo ' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{aaa-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[aaa]' + - sonar: + branch: '{stream}' + language: 'java' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + +- job-template: + name: 'aaa-integration-{stream}' + disabled: true + + # 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 + 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: + - git-scm: + credentials-id: '{ssh-credentials}' + refspec: '' + branch: '{branch}' + + wrappers: + - build-timeout + - ssh-agent-credentials: + user: '{ssh-credentials}' + + triggers: + - reverse: + jobs: '' + result: 'success' + + maven: + maven-name: '{mvn32}' + root-pom: 'pom.xml' + goals: 'clean install -V -Dmaven.repo.local=$WORKSPACE/.m2repo -Dorg.ops4j.pax.url.mvn.localRepository=$WORKSPACE/.m2repo ' + maven-opts: '-Xmx1024m -XX:MaxPermSize=256m' + settings: '{aaa-settings}' + global-settings: '{odl-global-settings}' + + publishers: + - email-notification: + email-prefix: '[aaa]' -- 2.36.6