From 1e2b604c6acc43154a7b9fb70ec3d6aea4de0a8a Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Mon, 25 Jul 2016 18:14:04 +0530 Subject: [PATCH] Migrate ocpplugin matrix-verify jobs to freestyle-verify jobs This patch will: * Delete the existing {project-name}-verify-{stream} jobs * Create new jobs {project-name}-verify-{stream}-{maven}-{jdk} jobs This work is related to our infra changes mentioned on the mailing list (see below for link). We'd like to migrate jobs away from using the matrix type jobs and convert them to freestyle jobs as the matrix system occassionally causes us build issues especially with larger queue sizes. See: https://lists.opendaylight.org/pipermail/release/2016-July/007288.html Change-Id: I698b09b471f4dec17f0b0555572d5ef17e9efd13 Signed-off-by: Anil Belur --- jjb/ocpplugin/ocpplugin.yaml | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/jjb/ocpplugin/ocpplugin.yaml b/jjb/ocpplugin/ocpplugin.yaml index 1434ae4e3..f452f4684 100644 --- a/jjb/ocpplugin/ocpplugin.yaml +++ b/jjb/ocpplugin/ocpplugin.yaml @@ -1,6 +1,6 @@ # ODL Releng build templates - project: - name: ocpplugin + name: ocpplugin-boron jobs: - '{project-name}-clm-{stream}' - '{project-name}-distribution-{stream}' @@ -8,26 +8,38 @@ - '{project-name}-integration-{stream}' - '{project-name}-merge-{stream}' - '{project-name}-periodic-{stream}' - - '{project-name}-sonar' - '{project-name}-validate-autorelease-{stream}' - - '{project-name}-verify-{stream}' + - '{project-name}-verify-{stream}-{maven}-{jdks}' # stream: release stream (eg. stable-lithium or beryllium) # branch: git branch (eg. stable/lithium or master) stream: - boron: - branch: 'master' - jdk: openjdk8 - jdks: - - openjdk8 disable_autorelease: False disable_distribution_check: False - project: 'ocpplugin' project-name: 'ocpplugin' + branch: 'master' + jdk: openjdk8 + jdks: + - openjdk8 + maven: + - mvn33: + mvn-version: '{mvn33}' mvn-settings: 'ocpplugin-settings' mvn-goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r ' mvn-opts: '-Xmx1024m -XX:MaxPermSize=256m' dependencies: 'odlparent-merge-{stream},yangtools-merge-{stream},controller-merge-{stream}' email-upstream: '[ocpplugin] [odlparent] [yangtools] [controller]' archive-artifacts: '' + +- project: + name: ocpplugin-sonar + jobs: + - '{project-name}-sonar' + project: 'ocpplugin' + project-name: 'ocpplugin' + branch: 'master' + mvn-settings: 'ocpplugin-settings' + mvn-goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r ' + mvn-opts: '-Xmx1024m -XX:MaxPermSize=256m' -- 2.36.6