summaryrefslogtreecommitdiffstats
path: root/jjb/hc2vpp/hc2vpp-csit.yaml
diff options
context:
space:
mode:
authorselias <samelias@cisco.com>2017-06-06 12:57:29 +0200
committerselias <samelias@cisco.com>2017-06-06 14:28:02 +0200
commitfdd0e07eff1b3717266f047c85a29a6c21c55ca5 (patch)
tree5296be5c9db45652be72957861e40e9b9c0091dc /jjb/hc2vpp/hc2vpp-csit.yaml
parent97ca62b8792ef55455ffc1af804333fbbe3d44e2 (diff)
Add CSIT verify jobs for Honeycomb tests
Add jobs that verify changes to CSIT code that tests Honeycomb/hc2vpp. Rename jjb/hc2vpp/csit-hc2vpp.yaml to jjb/hc2vpp/hc2vpp-csit.yaml ,to adhere to naming conventions and avoid duplicate filenames. Honeycomb jobs after patch: csit-hc2vpp-verify-* - verify CSIT commits hc2vpp-csit-verify-* - verify HC2VPP commits hc2vpp-csit-integration-* - check integration on VPP or HC2VPP merge Change-Id: Ib4be7f3c1482cf6c9d1ac8147e18d8d94832bbe0 Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'jjb/hc2vpp/hc2vpp-csit.yaml')
-rw-r--r--jjb/hc2vpp/hc2vpp-csit.yaml389
1 files changed, 389 insertions, 0 deletions
diff --git a/jjb/hc2vpp/hc2vpp-csit.yaml b/jjb/hc2vpp/hc2vpp-csit.yaml
new file mode 100644
index 000000000..de63b7099
--- /dev/null
+++ b/jjb/hc2vpp/hc2vpp-csit.yaml
@@ -0,0 +1,389 @@
+- project:
+ name: hc2vpp-csit
+ description: 'jenkins jobs to test Hc2vpp features.'
+ jobs:
+ - 'hc2vpp-csit-integration-{stream}-{os}'
+ - 'hc2vpp-csit-verify-{stream}-{os}'
+ - 'hc2vpp-csit-integration-odl-{odl}-{stream}-{os}'
+ - 'hc2vpp-csit-verify-odl-{odl}-{stream}-{os}'
+ project: 'hc2vpp'
+ build-artifact-num-to-keep: 10
+ stream:
+ - master:
+ branch: 'master'
+ repo-stream-part: 'master'
+ - '1701':
+ branch: 'stable/1701'
+ repo-stream-part: 'stable.1701'
+ - '1704':
+ branch: 'stable/1704'
+ repo-stream-part: 'stable.1704'
+ os:
+ - ubuntu1604:
+ repo-os-part: 'ubuntu.xenial.main'
+ odl:
+ - boron
+
+- project:
+ name: csit-hc2vpp-perf
+ description: 'jenkins jobs to test Hc2vpp performance.'
+ jobs:
+ - 'hc2vpp-csit-perf-{stream}-{os}'
+ project: 'hc2vpp'
+ build-artifact-num-to-keep: 10
+ stream:
+ - master:
+ branch: 'master'
+ repo-stream-part: 'master'
+ os:
+ - ubuntu1604:
+ repo-os-part: 'ubuntu.xenial.main'
+ odl:
+ - boron
+
+- job-template:
+ name: 'hc2vpp-csit-integration-{stream}-{os}'
+
+ project-type: freestyle
+ node: '{os}-basebuild-4c-4g'
+ 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}'
+ - os-parameter:
+ os: '{os}'
+ - stream-parameter:
+ stream: '{stream}'
+
+ scm:
+ - git-scm:
+ credentials-id: 'jenkins-gerrit-credentials'
+ branch: '{branch}'
+
+ wrappers:
+ - fdio-infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - reverse:
+ jobs: 'hc2vpp-integration-{stream}-{os}'
+ result: 'success'
+
+ builders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-integration.sh
+
+ publishers:
+ - archive-artifacts:
+ artifacts: 'csit/report.html, csit/log.html, csit/output.xml, csit/honeycomb.log'
+ latest-only: false
+ - email-notification:
+ email-prefix: '[hc2vpp]'
+
+ - robot-report:
+ output-path: 'csit'
+
+- job-template:
+ name: 'hc2vpp-csit-verify-{stream}-{os}'
+
+ project-type: maven
+ node: '{os}-basebuild-4c-4g'
+ jdk: openjdk8-{os}
+ 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}'
+ - os-parameter:
+ os: '{os}'
+ - maven-project-parameter:
+ maven: 'mvn33-new'
+ - maven-exec:
+ maven-version: 'mvn33-new'
+ - stream-parameter:
+ stream: '{stream}'
+ - odl-parameter:
+ odl: '{odl}'
+
+ scm:
+ - gerrit-trigger-scm:
+ credentials-id: 'jenkins-gerrit-credentials'
+ refspec: '$GERRIT_REFSPEC'
+ choosing-strategy: 'gerrit'
+
+ wrappers:
+ - fdio-infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - gerrit:
+ server-name: 'Primary'
+ trigger-on:
+ - comment-added-contains-event:
+ comment-contains-value: 'verify-csit'
+ projects:
+ - project-compare-type: 'ANT'
+ project-pattern: '{project}'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/{branch}'
+ skip-vote:
+ successful: true
+ failed: true
+ unstable: true
+ notbuilt: true
+
+ prebuilders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-verify-prebuild.sh
+
+ maven:
+ maven-name: 'mvn33-new'
+ root-pom: 'pom.xml'
+ goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r -DskipTests -Dcheckstyle.skip=true'
+ maven-opts: '-Xmx2048m -Dmaven.compile.fork=true'
+ settings: 'hc2vpp-settings'
+ settings-type: cfp
+ global-settings: 'global-settings'
+ global-settings-type: cfp
+
+ postbuilders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-verify.sh
+
+ publishers:
+ - archive-artifacts:
+ artifacts: 'csit/report.html, csit/log.html, csit/output.xml, csit/honeycomb.log'
+ latest-only: false
+ - email-notification:
+ email-prefix: '[hc2vpp]'
+
+ - robot-report:
+ output-path: 'csit'
+
+- job-template:
+ name: 'hc2vpp-csit-integration-odl-{odl}-{stream}-{os}'
+
+ project-type: freestyle
+ node: '{os}-basebuild-4c-4g'
+ 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}'
+ - os-parameter:
+ os: '{os}'
+ - stream-parameter:
+ stream: '{stream}'
+ - odl-parameter:
+ odl: '{odl}'
+
+ scm:
+ - git-scm:
+ credentials-id: 'jenkins-gerrit-credentials'
+ branch: '{branch}'
+
+ wrappers:
+ - fdio-infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - reverse:
+ jobs: 'hc2vpp-integration-{stream}-{os}'
+ result: 'success'
+
+ builders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-integration-odl.sh
+
+ publishers:
+ - archive-artifacts:
+ artifacts: 'csit/report.html, csit/log.html, csit/output.xml, csit/honeycomb.log'
+ latest-only: false
+ - email-notification:
+ email-prefix: '[hc2vpp]'
+
+ - robot-report:
+ output-path: 'csit'
+
+- job-template:
+ name: 'hc2vpp-csit-verify-odl-{odl}-{stream}-{os}'
+
+ project-type: maven
+ node: '{os}-basebuild-4c-4g'
+ jdk: openjdk8-{os}
+ 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}'
+ - os-parameter:
+ os: '{os}'
+ - maven-project-parameter:
+ maven: 'mvn33-new'
+ - maven-exec:
+ maven-version: 'mvn33-new'
+ - stream-parameter:
+ stream: '{stream}'
+ - odl-parameter:
+ odl: '{odl}'
+
+ scm:
+ - gerrit-trigger-scm:
+ credentials-id: 'jenkins-gerrit-credentials'
+ refspec: '$GERRIT_REFSPEC'
+ choosing-strategy: 'gerrit'
+
+ wrappers:
+ - fdio-infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - gerrit:
+ server-name: 'Primary'
+ trigger-on:
+ - comment-added-contains-event:
+ comment-contains-value: 'verify-csit'
+ projects:
+ - project-compare-type: 'ANT'
+ project-pattern: '{project}'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/{branch}'
+ skip-vote:
+ successful: true
+ failed: true
+ unstable: true
+ notbuilt: true
+
+ prebuilders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-verify-prebuild.sh
+
+ maven:
+ maven-name: 'mvn33-new'
+ root-pom: 'pom.xml'
+ goals: 'clean install -V -Dmaven.repo.local=/tmp/r -Dorg.ops4j.pax.url.mvn.localRepository=/tmp/r -DskipTests -Dcheckstyle.skip=true'
+ maven-opts: '-Xmx2048m -Dmaven.compile.fork=true'
+ settings: 'hc2vpp-settings'
+ settings-type: cfp
+ global-settings: 'global-settings'
+ global-settings-type: cfp
+
+ postbuilders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-verify-odl.sh
+
+ publishers:
+ - archive-artifacts:
+ artifacts: 'csit/report.html, csit/log.html, csit/output.xml, csit/honeycomb.log'
+ latest-only: false
+ - email-notification:
+ email-prefix: '[hc2vpp]'
+
+ - robot-report:
+ output-path: 'csit'
+
+- job-template:
+ name: 'hc2vpp-csit-perf-{stream}-{os}'
+
+ project-type: freestyle
+ node: '{os}-basebuild-4c-4g'
+ concurrent: false
+
+ 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}'
+ - os-parameter:
+ os: '{os}'
+ - stream-parameter:
+ stream: '{stream}'
+ - odl-parameter:
+ odl: '{odl}'
+
+ scm:
+ - gerrit-trigger-scm:
+ credentials-id: 'jenkins-gerrit-credentials'
+ refspec: '$GERRIT_REFSPEC'
+ choosing-strategy: 'gerrit'
+
+ wrappers:
+ - fdio-infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - gerrit:
+ server-name: 'Primary'
+ trigger-on:
+ - comment-added-contains-event:
+ comment-contains-value: 'verify-perf'
+
+ projects:
+ - project-compare-type: 'ANT'
+ project-pattern: '{project}'
+ branches:
+ - branch-compare-type: 'ANT'
+ branch-pattern: '**/{branch}'
+ skip-vote:
+ successful: false
+ failed: false
+ unstable: false
+ notbuilt: false
+
+ builders:
+ - shell:
+ !include-raw-escape: include-raw-hc2vpp-csit-perf.sh
+
+ publishers:
+ - archive-artifacts:
+ artifacts: 'csit/archive/*.*'
+ latest-only: false
+
+ - robot-report:
+ output-path: 'csit/archive'
+
+ - fdio-infra-shiplogs:
+ maven-version: 'mvn33-new'
+
+- parameter:
+ name: odl-parameter
+ parameters:
+ - string:
+ name: ODL
+ default: '{odl}'
+ description: "ODL version parameter." \ No newline at end of file