Refactor common parameters into opendaylight-infra-parameters
[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         - opendaylight-infra-parameters:
65             project: '{project}'
66             branch: '{branch}'
67             refspec: 'refs/heads/{branch}'
68             artifacts: '{archive-artifacts}'
69
70     scm:
71         - gerrit-trigger-scm:
72             refspec: '$GERRIT_REFSPEC'
73             branch: '{branch}'
74             choosing-strategy: gerrit
75
76     wrappers:
77         - opendaylight-infra-wrappers:
78             build-timeout: '{build-timeout}'
79
80     triggers:
81         - timed: '@midnight'
82         - gerrit:
83             server-name: 'OpenDaylight'
84             trigger-on:
85               - comment-added-contains-event:
86                  comment-contains-value: 'runit'
87             projects:
88               - project-compare-type: 'ANT'
89                 project-pattern: '{project}'
90                 branches:
91                   - branch-compare-type: 'ANT'
92                     branch-pattern: '**/{branch}'
93             skip-vote:
94                 successful: true
95                 failed: true
96                 unstable: true
97                 notbuilt: true
98
99     builders:
100         - wipe-org-opendaylight-repo
101         - shell:
102             !include-raw-escape:
103                 - include-raw-setup-docker.sh
104         - inject:
105             properties-file: env.properties
106         - maven-target:
107             maven-version: '{mvn33}'
108             pom: 'pom.xml'
109             goals: 'clean install -V verify -Pintegrationtest -Dskip.karaf.featureTest=true -Dmaven.compile.fork=true -Dovsdb.controller.address=${{CONTROLLER_IP}}'
110             properties:
111                 - 'ovsdbserver.ipaddress=127.0.0.1'
112                 - 'ovsdbserver.port=6641'
113                 - 'ovsdb.userspace.enabled=yes'
114                 - 'maven.repo.local=/tmp/r'
115                 - 'org.ops4j.pax.url.mvn.localRepository=/tmp/r'
116                 - 'stream={stream}'
117             java-opts:
118                 - '-Xmx1024m -XX:MaxPermSize=256m'
119             settings: 'ovsdb-settings'
120             settings-type: cfp
121             global-settings: 'odl-global-settings'
122             global-settings-type: cfp
123         - shell:
124             !include-raw-escape:
125                 - include-raw-cleanup-docker.sh
126         - jacoco-nojava-workaround
127
128     publishers:
129         - archive:
130             artifacts: 'docker-ovs-*.log'
131             fingerprint: false
132         - email-notification:
133             email-prefix: '[ovsdb]'