X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=jjb%2Fintegration%2Fintegration-distribution-jobs.yaml;h=d4f11ef47bfd58435b897ff4b1b0ddac4c3715fa;hb=50d93b109dc57822d6744c059101b2bf28a00dc4;hp=78eb68b2a45983740554d006f2cec65096dae961;hpb=93b08701f1549ad48e2c8c80042a8b4e5427f10f;p=releng%2Fbuilder.git diff --git a/jjb/integration/integration-distribution-jobs.yaml b/jjb/integration/integration-distribution-jobs.yaml index 78eb68b2a..d4f11ef47 100644 --- a/jjb/integration/integration-distribution-jobs.yaml +++ b/jjb/integration/integration-distribution-jobs.yaml @@ -4,18 +4,22 @@ jobs: - 'integration-distribution-verify-{stream}' - 'integration-distribution-merge-{stream}' + - 'integration-distribution-deploy-{stream}' + - 'integration-distribution-offline-{stream}' stream: - - beryllium: + - boron: branch: 'master' - + jdk: 'openjdk8' + - beryllium: + branch: 'stable/beryllium' + jdk: 'openjdk7' - stable-lithium: branch: 'stable/lithium' - + jdk: 'openjdk7' - stable-helium: branch: 'stable/helium' - - jdk: 'openjdk7' + jdk: 'openjdk7' - job-template: @@ -37,11 +41,13 @@ project: 'integration/distribution' - gerrit-parameter: branch: '{branch}' + - integration-patch-refspec: + branch: '$GERRIT_REFSPEC' scm: - gerrit-trigger-scm: credentials-id: '{ssh-credentials}' - refspec: '$GERRIT_REFSPEC' + refspec: '$PATCHREFSPEC' choosing-strategy: 'gerrit' wrappers: @@ -56,16 +62,27 @@ branch: '{branch}' prebuilders: + - integration-get-bundle-url-root + - inject: + properties-file: 'bundle.txt' - wipe-org-opendaylight-repo maven: maven-name: '{mvn33}' root-pom: 'pom.xml' - goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r source:jar javadoc:jar' + goals: 'clean install -Djenkins -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r source:jar javadoc:jar' maven-opts: '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true' settings: '{integration-settings}' global-settings: '{odl-global-settings}' ignore-upstream-changes: true + post-step-run-condition: 'SUCCESS' + + postbuilders: + - trigger-builds: + - project: 'integration-distribution-deploy-{stream}' + block: true + predefined-parameters: + BUNDLEURL=$BUNDLEURL publishers: - email-notification: @@ -111,7 +128,7 @@ maven: maven-name: '{mvn33}' root-pom: 'pom.xml' - goals: 'clean install -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r source:jar javadoc:jar' + goals: 'clean install -Djenkins -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r source:jar javadoc:jar' maven-opts: '-Xmx1024m -XX:MaxPermSize=256m -Dmaven.compile.fork=true' settings: '{integration-settings}' global-settings: '{odl-global-settings}' @@ -124,3 +141,98 @@ unique-version: true deploy-unstable: false +# Template: integration-distribution-deploy-{stream} +# Goal: Verify distribution starts with no issues when all features are loaded +# Operation: This job deploys the controller installing odl-integration-all + +- job-template: + name: 'integration-distribution-deploy-{stream}' + + project-type: freestyle + 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: + - project-parameter: + project: 'integration/distribution' + - integration-branch: + branch: '{branch}' + - integration-bundleurl: + bundleurl: 'last' + - integration-jdk-version: + jdkversion: '{jdk}' + + wrappers: + - build-timeout + - ssh-agent-credentials: + users: + - '{ssh-credentials}' + + triggers: + - timed: 'H H * * *' + + builders: + - integration-get-bundle-vars + - inject: + properties-file: 'bundle_vars.txt' + - integration-deploy-controller-verify + + publishers: + - archive: + artifacts: 'karaf.log' + - archive: + artifacts: 'karaf_console.log' + - email-notification: + email-prefix: '[integration]' + +# Template: integration-distribution-offline-{stream} +# Goal: Verify distribution can start with no internet connection +# Operation: This job deploys the controller removing any external repository definition + +- job-template: + name: 'integration-distribution-offline-{stream}' + + project-type: freestyle + 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: + - project-parameter: + project: 'integration/distribution' + - integration-branch: + branch: '{branch}' + - integration-bundleurl: + bundleurl: 'last' + - integration-jdk-version: + jdkversion: '{jdk}' + + wrappers: + - build-timeout + - ssh-agent-credentials: + users: + - '{ssh-credentials}' + + triggers: + - timed: 'H H * * *' + + builders: + - integration-get-bundle-vars + - inject: + properties-file: 'bundle_vars.txt' + - integration-deploy-controller-offline + + publishers: + - archive: + artifacts: 'karaf.log' + - email-notification: + email-prefix: '[integration]'