284fdef09c0635d96479e9cabca753b4b42bd26c
[releng/builder.git] / jjb / autorelease / autorelease-templates.yaml
1 ---
2 # Autorelease build jobs
3 - job-template:
4     name: 'autorelease-release-{stream}'
5
6     project-type: freestyle
7     node: centos7-autorelease-4c-16g
8     jdk: '{jdk}'
9     cron: 'H 0 * * *'
10
11     # Default variable values
12     extra-mvn-opts: ''
13
14     properties:
15       - opendaylight-infra-properties:
16           build-days-to-keep: '30'
17
18     parameters:
19       - maven-exec:
20           maven-version: 'mvn33'
21       - opendaylight-infra-parameters:
22           os-cloud: '{os-cloud}'
23           project: '{project}'
24           branch: '{branch}'
25           refspec: 'refs/heads/{branch}'
26           artifacts: '{archive-artifacts}'
27       - distribution-karaf-version:
28           karaf-version: '{karaf-version}'
29       - autorelease-release-tag:
30           release-tag: '{next-release-tag}'
31       - autorelease-release-branch:
32           release-branch: '{branch}'
33       - string:
34           name: EXTRA_MVN_OPTS
35           default: '{extra-mvn-opts}'
36           description: |
37               Additional optional Maven Options to pass to the Maven Goals
38               parameter.
39
40               Examples:
41               -Dskip.karaf.featureTest=true  # To disable karaf SingleFeatureTests
42               --fail-never   # NEVER fail the build, regardless of project result
43               --fail-at-end  # Only fail the build afterwards; allow all non-impacted builds to continue
44
45     scm:
46       - git:
47           credentials-id: 'opendaylight-jenkins-ssh'
48           url: '$GIT_BASE'
49           refspec: '$GERRIT_REFSPEC'
50           branches:
51             - '$GERRIT_BRANCH'
52           choosing-strategy: 'gerrit'
53           skip-tag: true
54           submodule:
55             recursive: true
56             timeout: 60
57
58     wrappers:
59       - opendaylight-infra-wrappers:
60           build-timeout: '900'
61
62     triggers:
63       - timed: '{cron}'
64
65     builders:
66       # force jenkins install of maven version before any shell scripts use it
67       - maven-target:
68           maven-version: 'mvn33'
69           goals: '-version'
70           settings: 'autorelease-settings'
71           settings-type: cfp
72           global-settings: 'odl-global-settings'
73           global-settings-type: cfp
74       - wipe-local-maven-repo
75       - jacoco-nojava-workaround
76       - shell: "./scripts/list-project-dependencies.sh"
77       - autorelease-determine-merge-order
78       - autorelease-cfp:
79           autorelease-settings: 'autorelease-settings'
80           odl-global-settings: 'odl-global-settings'
81       - autorelease-generate-taglist
82       - autorelease-distribute-taglist
83       - distribute-build-url:
84           path: 'integration/distribution/$KARAF_ARTIFACT/src/main/assembly'
85       - autorelease-generate-release-patches
86       # In a perfect world projects should be releasing separately and we consume them
87       # via a project that pulls the release bits from each project from Nexus.
88       # Keep the patches compatible with that ideal, but apply an edit
89       # to enable building in a single maven reactor afterwards.
90       - autorelease-fix-relative-paths
91       - maven-target:
92           maven-version: 'mvn33'
93           pom: 'pom.xml'
94           goals: |
95               clean deploy
96               $EXTRA_MVN_OPTS
97               -Pintegrationtests,docs,repoBuild
98               -Dcheckstyle.skip=true
99               -DaltDeploymentRepository=staging::default::file:hide/from/pom/files/stage
100               {opendaylight-infra-mvn-opts}
101           java-opts:
102             - '-Xmx10g -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
103           settings: 'autorelease-settings'
104           settings-type: cfp
105           global-settings: 'odl-global-settings'
106           global-settings-type: cfp
107       - autorelease-maven-deploy
108       - autorelease-get-integration-test-variables
109       - autorelease-maven-sources:
110           opendaylight-infra-mvn-opts: '{opendaylight-infra-mvn-opts}'
111           maven-version: 'mvn33'
112           settings: 'autorelease-settings'
113           global-settings: 'odl-global-settings'
114       - autorelease-maven-sources-post-process
115       - shell: |
116           mkdir -p archives/
117           cp *.log *.prop $_
118
119     publishers:
120       - opendaylight-infra-notify-status
121       - opendaylight-infra-sysstats
122       - archive:
123           # Need to archive dependencies.log in Jenkins to provide a simple
124           # way for downstream jobs to pull the latest version of this file
125           # in their builds.
126           artifacts: 'dependencies.log'
127       - trigger-parameterized-builds:
128           - project: 'autorelease-generate-release-notes-{stream}'
129             condition: UNSTABLE_OR_BETTER
130             property-file: variables.jenkins-trigger
131             fail-on-missing: true
132           - project: 'integration-distribution-test-{integration-test}'
133             condition: UNSTABLE_OR_BETTER
134             property-file: variables.jenkins-trigger
135             fail-on-missing: true
136           - project: 'integration-distribution-test-{integration-test}'
137             condition: FAILED
138             trigger-with-no-params: true
139           - project: 'integration-sanity-test-{integration-test}'
140             condition: UNSTABLE_OR_BETTER
141             property-file: variables.jenkins-trigger
142             fail-on-missing: true
143           - project: 'integration-sanity-test-{integration-test}'
144             condition: FAILED
145             trigger-with-no-params: true
146           - project: 'packaging-build-rpm-master'
147             condition: UNSTABLE_OR_BETTER
148             predefined-parameters: DOWNLOAD_URL=$BUNDLE_URL
149             property-file: variables.jenkins-trigger
150             fail-on-missing: true
151       - opendaylight-infra-shiplogs:
152           maven-version: 'mvn33'
153
154
155 - job-template:
156     name: 'autorelease-generate-release-notes-{stream}'
157
158     project-type: freestyle
159     node: centos7-java-builder-2c-8g
160
161     properties:
162       - opendaylight-infra-properties:
163           build-days-to-keep: '{build-days-to-keep}'
164
165     parameters:
166       - opendaylight-infra-parameters:
167           os-cloud: '{os-cloud}'
168           project: '{project}'
169           branch: '{branch}'
170           refspec: 'refs/heads/{branch}'
171           artifacts: '{archive-artifacts}'
172
173     scm:
174       - git:
175           credentials-id: 'opendaylight-jenkins-ssh'
176           url: '$GIT_BASE'
177           refspec: '$GERRIT_REFSPEC'
178           branches:
179             - '$GERRIT_BRANCH'
180           choosing-strategy: 'gerrit'
181           skip-tag: true
182           submodule:
183             recursive: true
184
185     wrappers:
186       - opendaylight-infra-wrappers:
187           build-timeout: '30'
188
189     triggers:
190       - timed: '0 0 * * 0'
191
192     builders:
193       # force jenkins install of maven version before any shell scripts use it
194       - maven-target:
195           maven-version: 'mvn33'
196           goals: '-version'
197           settings: 'autorelease-settings'
198           settings-type: cfp
199           global-settings: 'odl-global-settings'
200           global-settings-type: cfp
201       - maven-target:
202           maven-version: 'mvn33'
203           pom: '$WORKSPACE/scripts/release_notes_management/pom.xml'
204           goals: |
205               clean package
206               -Dcheckstyle.skip=true
207               -DaltDeploymentRepository=staging::default::file:hide/from/pom/files/stage
208               {opendaylight-infra-mvn-opts}
209           java-opts:
210             - '-Xmx10g -XX:MaxPermSize=1024m -Dmaven.compile.fork=true'
211           settings: 'autorelease-settings'
212           settings-type: cfp
213           global-settings: 'odl-global-settings'
214           global-settings-type: cfp
215       - autorelease-generate-release-notes
216
217     publishers:
218       - opendaylight-infra-sysstats
219       - opendaylight-infra-shiplogs:
220           maven-version: 'mvn33'