blob: 4cd3011359095167140d8ae4db330a6c4b619ac8 [file] [log] [blame]
Joey Armstrong775a20f2022-12-02 12:55:43 -05001// Copyright 2019-2023 Open Networking Foundation (ONF) and the ONF Contributors
Carmelo Cascone9c00dce2019-12-05 18:33:04 -08002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Andrea Campanellac6382292021-03-26 13:17:43 +010015def appRepo = '${appRepo}'
16def appName = '${appName}'
17def apiVersion = '${apiVersion}'
18def nextApiVersion = '${nextApiVersion}'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080019def version = '${version}'
20def nextVersion = '${nextVersion}'
21def branch = '${branch}'
22def jdkDistro = '${jdkDistro}'
23
24// This pipeline updates the <version> tag in the root pom.xml for the
25// given app repo, and pushes two new Gerrit changes:
26// 1) With version the given ${version} (e.g., 1.0.0)
27// 2) With ${nextVersion}-SNAPSHOT (e.g., 1.1.0-SNAPSHOT)
28//
29// Users must manually approve and merge these changes on Gerrit. Once merged,
30// it's up to the maven-publish and version-tag jobs to complete the release by
31// uploading artifacts to Sonatype and creating Git tags.
32
33def changeVersion(def newVersion) {
34 // Update the top-level <version> tag in the root pom.xml.
35 sh 'mvn versions:set -DnewVersion=' + newVersion + ' versions:commit'
36}
37
Andrea Campanellac6382292021-03-26 13:17:43 +010038def changeApiVersion(def appName, def newApiVersion) {
39 // Update the top-level <*appName*.api.version> tag in the root pom.xml.
40 sh 'mvn versions:set-property -Dproperty=' + appName + '.api.version -DnewVersion=' + newApiVersion + ' -DallowSnapshots=true versions:commit'
41}
42
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080043// TODO: use the declarative pipeline syntax, like all other groovy files.
44// This implementation is based on the legacy cord-onos-publisher/Jenkinsfile.release
Hung-Wei Chiuf6cbde22021-04-22 22:15:23 -070045node ('ubuntu18.04-basebuild-1c-2g') {
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080046
Andrea Campanellac6382292021-03-26 13:17:43 +010047 sh 'echo Releasing ' + appRepo + ' repository on ' + branch + ' branch'
Andrea Campanelladb8eac22021-03-30 14:27:16 +020048 sh 'echo Releasing version ' + version + ' with API version ' + apiVersion + ' and starting ' + nextVersion + '-SNAPSHOT with API version ' + nextApiVersion + '-SNAPSHOT'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080049
50 // Set the JDK version
51 sh 'echo Using JDK distribution: ' + jdkDistro
52 sh 'sudo update-java-alternatives --set ' + jdkDistro
53 sh 'echo Java Version:'
54 sh 'java -version'
55
56 def userId = wrap([$class: 'BuildUser']) {
57 return env.BUILD_USER_ID
58 }
59
60 stage ('Configure system') {
61 echo "Job triggered by " + userId
62 // FIXME: supply Jenkins-owned known_hosts file via config_file_provider
63 // https://jenkins.io/doc/pipeline/steps/config-file-provider/
64 sh 'ssh-keyscan -H -t rsa -p 29418 gerrit.opencord.org >> ~/.ssh/known_hosts'
65
66 sh 'git config --global user.name "Jenkins"'
Zack Williams7a7a3182020-08-13 14:15:40 -070067 sh 'git config --global user.email "do-not-reply@opennetworking.org"'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080068
69 // GPG key used to sign maven artifacts
70 withCredentials([file(credentialsId: 'gpg-creds-maven', variable: 'GPUPG')]) {
71 sh 'tar -xvf $GPUPG -C ~'
72 }
73 }
74
75 stage ('Check out code') {
76 cleanWs()
77
78 sshagent (credentials: ['gerrit-jenkins-user']) {
Andrea Campanellac6382292021-03-26 13:17:43 +010079 git branch: branch, url: 'ssh://jenkins@gerrit.opencord.org:29418/' + appRepo, credentialsId: 'gerrit-jenkins-user'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080080
81 sh 'gitdir=$(git rev-parse --git-dir); scp -p -P 29418 jenkins@gerrit.opencord.org:hooks/commit-msg ${gitdir}/hooks/'
82 }
83 }
84
85 stage ('Move to release version') {
Andrea Campanellab10b1362022-01-10 12:17:42 +010086 sh 'echo app version ' + version
87 sh 'echo api version ' + apiVersion
88
Andrea Campanellac6382292021-03-26 13:17:43 +010089 //Splitting version and apiVersion and check if apiVersion different from empty then update API it.
90 //Allows to release apps that dont' have api.version (e.g. bng,pppoe,kafka)
Andrea Campanella40778012021-03-29 11:36:16 +020091 changeVersion(version)
Andrea Campanellab10b1362022-01-10 12:17:42 +010092 if (!params.apiVersion.isEmpty()) {
93 sh 'echo releasing api version' + '"' + apiVersion +'"'
Andrea Campanellac6382292021-03-26 13:17:43 +010094 changeApiVersion(appName, apiVersion)
95 }
96 sh 'git add -A && git commit -m "Release app version ' + version + ' with API version ' + apiVersion + '"'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -080097 }
98
99 stage ('Verify code') {
100 def found = sh script:'egrep -R SNAPSHOT .', returnStatus:true
101
102 if (found == 0) {
103 timeout(time: 1, unit: 'HOURS') {
104 metadata = input id: 'manual-verify',
105 message: 'Found references to SNAPSHOT in the code. Are you sure you want to release?',
106 submitter: userId
107 }
108 }
109 }
110
111 stage ('Push to Gerrit') {
112 sshagent (credentials: ['gerrit-jenkins-user']) {
113 sh 'git push origin HEAD:refs/for/' + branch
114 }
115 }
116
117 stage ('Move to next SNAPSHOT version') {
118 def snapshot = nextVersion + '-SNAPSHOT'
Andrea Campanellac6382292021-03-26 13:17:43 +0100119 def apiSnapshot = nextApiVersion + '-SNAPSHOT'
Andrea Campanellab10b1362022-01-10 12:17:42 +0100120
121 sh 'echo next app version ' + nextVersion
122 sh 'echo next api version ' + nextApiVersion
123
Carmelo Cascone9c00dce2019-12-05 18:33:04 -0800124 changeVersion(snapshot)
Andrea Campanellab10b1362022-01-10 12:17:42 +0100125 if (!params.nextApiVersion.isEmpty()) {
126 sh 'echo moving to next api version' + '"' + nextApiVersion +'"'
Andrea Campanellac6382292021-03-26 13:17:43 +0100127 changeApiVersion(appName, apiSnapshot)
128 }
129 sh 'git add -A && git commit -m "Starting snapshot ' + snapshot + ' with API version ' + apiSnapshot + '"'
Carmelo Cascone9c00dce2019-12-05 18:33:04 -0800130 sshagent (credentials: ['gerrit-jenkins-user']) {
131 sh 'git push origin HEAD:refs/for/' + branch
132 }
133 }
134
135 stage ('Finish') {
136 sh 'echo "Release done!"'
137 sh 'echo "Go to Gerrit and merge new changes"'
138 sh 'echo "Go to http://oss.sonatype.org and release the artifacts (after the maven-publish job completes)"'
139 }
140}
141