Merge "redirecting karaf console to file to check for BindException"
[releng/builder.git] / jjb / ovsdb / ovsdb-full-integration.yaml
1 - project:
2     name: ovsdb-full-integration
3     jobs:
4         - 'ovsdb-daily-full-integration-{stream}'
5
6     # stream:    release stream (eg. stable-lithium or beryllium)
7     # branch:    git branch (eg. stable/lithium or master)
8     stream:
9         - beryllium:
10             branch: 'master'
11             jdk: openjdk8
12             jdks:
13                 - openjdk8
14         - stable-lithium:
15             branch: 'stable/lithium'
16             jdk: openjdk8
17             jdks:
18                 - openjdk8
19
20     project: 'ovsdb'
21
22 - job-template:
23     name: 'ovsdb-daily-full-integration-{stream}'
24
25     # Required Variables:
26     #     stream:    release stream (eg. stable-lithium or beryllium)
27     #     branch:    git branch (eg. stable/lithium or master)
28
29     project-type: matrix
30     node: matrix_master
31     description: 'Integration tests for the OVSDB project against different versions of OVS and branches. This job runs nightly. '
32     execution-strategy:
33         sequential: true
34
35     axes:
36         - axis:
37             type: user-defined
38             name: 'OVS_VERSION'
39             values:
40                 - 1.4.6
41                 - 1.5.0
42                 - 1.6.1
43                 - 1.7.3
44                 - 1.9.3
45                 - 1.10.2
46                 - 1.11.0
47                 - 2.0.1
48                 - 2.1.2
49                 - 2.3.2
50                 - 2.4.0
51         - axis:
52             type: jdk
53             values:
54                 - openjdk8
55         - axis:
56             type: slave
57             name: nodes
58             values:
59                 - dynamic_docker
60
61     logrotate:
62         daysToKeep: '{build-days-to-keep}'
63         numToKeep: '{build-num-to-keep}'
64         artifactDaysToKeep: '{build-artifact-days-to-keep}'
65         artifactNumToKeep: '{build-artifact-num-to-keep}'
66
67     parameters:
68         - project-parameter:
69             project: '{project}'
70         - gerrit-parameter:
71             branch: '{branch}'
72
73     scm:
74         - git-scm:
75             credentials-id: '{ssh-credentials}'
76             refspec: ''
77             branch: '{branch}'
78
79     wrappers:
80         - timeout:
81             fail: true
82             timeout: 360
83             timeout-var: 'BUILD_TIMEOUT'
84             type: absolute
85         - ssh-agent-credentials:
86             users:
87                 - '{ssh-credentials}'
88
89     triggers:
90         - timed: '@midnight'
91
92     builders:
93         - wipe-org-opendaylight-repo
94         - shell:
95             !include-raw-escape:
96                 - include-raw-setup-docker.sh
97         - inject:
98             properties-file: env.properties
99         - maven-target:
100             maven-version: '{mvn33}'
101             pom: 'pom.xml'
102             goals: 'clean install verify -Pintegrationtest,jenkins -V -Dovsdb.controller.address=${{CONTROLLER_IP}}'
103             properties:
104                 - 'ovsdbserver.ipaddress=127.0.0.1'
105                 - 'ovsdbserver.port=6641'
106                 - 'ovsdb.userspace.enabled=yes'
107                 - 'maven.repo.local=/tmp/r'
108                 - 'org.ops4j.pax.url.mvn.localRepository=/tmp/r'
109                 - 'stream={stream}'
110             java-opts:
111                 - '-Xmx1024m -XX:MaxPermSize=256m'
112             settings: '{ovsdb-settings}'
113             global-settings: '{odl-global-settings}'
114         - shell:
115             !include-raw-escape:
116                 - include-raw-cleanup-docker.sh
117         - jacoco-nojava-workaround
118
119     publishers:
120         - archive:
121             artifacts: 'docker-ovs-*.log'
122             fingerprint: false
123         - email-notification:
124             email-prefix: '[ovsdb]'