Merge "Move openstack-gerrit job to netvirt"
[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         - boron:
10             branch: 'master'
11             jdk: openjdk8
12             jdks:
13                 - openjdk8
14         - beryllium:
15             branch: 'stable/beryllium'
16             jdk: openjdk8
17             jdks:
18                 - openjdk8
19         - stable-lithium:
20             branch: 'stable/lithium'
21             jdk: openjdk7
22             jdks:
23                 - openjdk7
24
25     project: 'ovsdb'
26
27 - job-template:
28     name: 'ovsdb-daily-full-integration-{stream}'
29
30     # Required Variables:
31     #     stream:    release stream (eg. stable-lithium or beryllium)
32     #     branch:    git branch (eg. stable/lithium or master)
33
34     project-type: matrix
35     node: matrix_master
36     description: 'Integration tests for the OVSDB project against different versions of OVS and branches. This job runs nightly. '
37     execution-strategy:
38         sequential: true
39
40     axes:
41         - axis:
42             type: user-defined
43             name: 'OVS_VERSION'
44             values:
45                 - 2.3.2
46                 - 2.4.0
47         - axis:
48             type: jdk
49             values: '{obj:jdks}'
50
51         - axis:
52             type: slave
53             name: nodes
54             values:
55                 - dynamic_docker
56
57     logrotate:
58         daysToKeep: '{build-days-to-keep}'
59         numToKeep: '{build-num-to-keep}'
60         artifactDaysToKeep: '{build-artifact-days-to-keep}'
61         artifactNumToKeep: '{build-artifact-num-to-keep}'
62
63     parameters:
64         - project-parameter:
65             project: '{project}'
66         - gerrit-parameters:
67             project: '{project}'
68             branch: '{branch}'
69             refspec: 'refs/heads/{branch}'
70
71     scm:
72         - git-scm:
73             credentials-id: '{ssh-credentials}'
74             refspec: ''
75             branch: '{branch}'
76
77     wrappers:
78         - timeout:
79             fail: true
80             timeout: 360
81             timeout-var: 'BUILD_TIMEOUT'
82             type: absolute
83         - ssh-agent-credentials:
84             users:
85                 - '{ssh-credentials}'
86
87     triggers:
88         - timed: '@midnight'
89
90     builders:
91         - wipe-org-opendaylight-repo
92         - shell:
93             !include-raw-escape:
94                 - include-raw-setup-docker.sh
95         - inject:
96             properties-file: env.properties
97         - maven-target:
98             maven-version: '{mvn33}'
99             pom: 'pom.xml'
100             goals: 'clean install -V verify -Pintegrationtest -Dskip.karaf.featureTest=true -Dmaven.compile.fork=true -Dovsdb.controller.address=${{CONTROLLER_IP}}'
101             properties:
102                 - 'ovsdbserver.ipaddress=127.0.0.1'
103                 - 'ovsdbserver.port=6641'
104                 - 'ovsdb.userspace.enabled=yes'
105                 - 'maven.repo.local=/tmp/r'
106                 - 'org.ops4j.pax.url.mvn.localRepository=/tmp/r'
107                 - 'stream={stream}'
108             java-opts:
109                 - '-Xmx1024m -XX:MaxPermSize=256m'
110             settings: '{ovsdb-settings}'
111             global-settings: '{odl-global-settings}'
112         - shell:
113             !include-raw-escape:
114                 - 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]'