Merge "Revert "Include DLUX dependencies to enable system test to pass on Jenkins""
[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 include-raw-setup-docker.sh
96         - inject:
97             properties-file: env.properties
98         - maven-target:
99             maven-version: '{mvn33}'
100             pom: 'pom.xml'
101             goals: 'clean install verify -Pintegrationtest,jenkins -V -Dovsdb.controller.address=${{CONTROLLER_IP}}'
102             properties:
103                 - 'ovsdbserver.ipaddress=127.0.0.1'
104                 - 'ovsdbserver.port=6641'
105                 - 'ovsdb.userspace.enabled=yes'
106                 - 'maven.repo.local=/tmp/r'
107                 - 'org.ops4j.pax.url.mvn.localRepository=/tmp/r'
108                 - 'stream={stream}'
109             java-opts:
110                 - '-Xmx1024m -XX:MaxPermSize=256m'
111             settings: '{ovsdb-settings}'
112             global-settings: '{odl-global-settings}'
113         - shell:
114             !include-raw-escape include-raw-cleanup-docker.sh
115         - jacoco-nojava-workaround
116
117     publishers:
118         - archive:
119             artifacts: 'docker-ovs-*.log'
120             fingerprint: false
121         - email-notification:
122             email-prefix: '[ovsdb]'