Merge "Move ovsdb-full-integration job to releng silo"
[releng/builder.git] / jjb / ovsdb / ovsdb-full-integration.yaml
1 - project:
2     name: ovsdb-full-integration
3     jobs:
4         - 'ovsdb-full-integration-daily'
5
6     project: 'ovsdb'
7
8 - job-template:
9     name: 'ovsdb-full-integration-daily'
10
11     project-type: matrix
12     node: matrix_master
13     description: 'Integration tests for the OVSDB project against every known version of OVS. This job runs nightly. '
14     execution-strategy:
15         sequential: true
16     axes:
17         - axis:
18             type: user-defined
19             name: 'OVS_VERSION'
20             values:
21                 - 1.4.6
22                 - 1.5.0
23                 - 1.6.1
24                 - 1.7.0
25                 - 1.7.1
26                 - 1.7.3
27                 - 1.9.0
28                 - 1.9.3
29                 - 1.10.0
30                 - 1.10.2
31                 - 1.11.0
32                 - 2.0.0
33                 - 2.0.1
34                 - 2.1.0
35                 - 2.1.1
36                 - 2.1.2
37                 - 2.3.0
38         - axis:
39             type: jdk
40             values:
41                 - openjdk7
42         - axis:
43             type: slave
44             name: nodes
45             values:
46                 - dynamic_docker
47
48     logrotate:
49         daysToKeep: '{build-days-to-keep}'
50         numToKeep: '{build-num-to-keep}'
51         artifactDaysToKeep: '{build-artifact-days-to-keep}'
52         artifactNumToKeep: '{build-artifact-num-to-keep}'
53
54     parameters:
55         - project-parameter:
56             project: '{project}'
57
58     scm:
59         - git-scm:
60             credentials-id: '{ssh-credentials}'
61             refspec: ''
62             branch: 'master'
63
64     wrappers:
65         # - build-timeout
66         - timeout:
67             fail: true
68             timeout: 360
69             timeout-var: 'BUILD_TIMEOUT'
70             type: absolute
71         - ssh-agent-credentials:
72             user: '{ssh-credentials}'
73
74     triggers:
75         - timed: '@midnight'
76
77     builders:
78         - wipe-org-opendaylight-repo
79         - shell:
80             !include-raw-escape include-raw-setup-docker.sh
81         - maven-target:
82             maven-version: '{mvn32}'
83             pom: 'pom.xml'
84             goals: 'clean install verify -Pintegrationtest,jenkins -V'
85             properties:
86                 - 'ovsdbserver.ipaddress=127.0.0.1'
87                 - 'ovsdbserver.port=6641'
88                 - 'maven.repo.local=/tmp/r'
89                 - 'org.ops4j.pax.url.mvn.localRepository=/tmp/r'
90             java-opts:
91                 - '-Xmx1024m -XX:MaxPermSize=256m'
92             settings: '{ovsdb-settings}'
93             global-settings: '{odl-global-settings}'
94         - inject:
95             properties-file: env.properties
96         - shell:
97             !include-raw-escape include-raw-cleanup-docker.sh
98         - jacoco-nojava-workaround
99
100     publishers:
101         - archive:
102             artifacts: 'docker-ovs-*.log'
103             fingerprint: false
104         - email-notification:
105             email-prefix: '[ovsdb]'