blob: f72ce1e0f996f8d772775ba67db81ac72b0ad5c5 [file] [log] [blame]
Jonathan Hart93be2a02017-12-04 09:23:34 -08001// Copyright 2017-present Open Networking Foundation
2//
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.
Jonathan Hart8d253832017-12-04 08:57:29 -080014
Jonathan Hart7b395df2017-12-04 10:07:17 -080015def app = '${app}'
16def version = '${version}'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080017def nextVersion = '${nextVersion}'
Jonathan Hart7b395df2017-12-04 10:07:17 -080018def branch = '${branch}'
Jonathan Hart8d253832017-12-04 08:57:29 -080019
Jonathan Hart8d253832017-12-04 08:57:29 -080020
Jonathan Hart2b564992017-12-04 14:07:25 -080021def changeVersion(def newVersion) {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080022 // TODO any other versions we need to account for?
23 sh 'mvn versions:set -DnewVersion=' + newVersion + ' versions:commit'
24}
25
Jonathan Hart6c0cca02018-05-29 10:43:30 -070026node ('ubuntu16.04-basebuild-1c-2g') {
Jonathan Hart8d253832017-12-04 08:57:29 -080027
Jonathan Hartb9615f22018-05-30 10:56:01 -070028 stage ('Configure system') {
Jonathan Hart20225d82018-05-29 18:38:19 -070029 sh 'ssh-keyscan -H -t rsa -p 29418 gerrit.opencord.org >> ~/.ssh/known_hosts'
30
31 sh 'git config --global user.name "Jenkins"'
32 sh 'git config --global user.email "do-not-reply@opencord.org"'
Jonathan Hartb9615f22018-05-30 10:56:01 -070033
34 withCredentials([file(credentialsId: 'gpg-creds-maven', variable: 'GPUPG')]) {
35 sh 'tar -xvf $GPUPG -C ~'
36 }
Jonathan Hart145b5112018-05-29 16:16:56 -070037 }
38
Jonathan Hartb9615f22018-05-30 10:56:01 -070039 stage ('Check out code') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080040 cleanWs()
Jonathan Hart20225d82018-05-29 18:38:19 -070041
42 sshagent (credentials: ['gerrit-jenkins-user']) {
43 git branch: branch, url: 'ssh://jenkins@gerrit.opencord.org:29418/' + app, credentialsId: 'gerrit-jenkins-user'
Jonathan Hart7942fa02017-12-04 15:43:00 -080044
Jonathan Hart20225d82018-05-29 18:38:19 -070045 sh 'gitdir=$(git rev-parse --git-dir); scp -p -P 29418 jenkins@gerrit.opencord.org:hooks/commit-msg ${gitdir}/hooks/'
46 }
Jonathan Hart7b395df2017-12-04 10:07:17 -080047 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080048
Jonathan Hart7942fa02017-12-04 15:43:00 -080049 stage ('Move to release version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080050 changeVersion(version)
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080051 sh 'git add -A && git commit -m "Release version ' + version + '"'
52 }
Jonathan Hartb9615f22018-05-30 10:56:01 -070053
Jonathan Hart20225d82018-05-29 18:38:19 -070054 stage ('Verify code') {
Jonathan Hart55bef2c2018-05-29 18:40:37 -070055 def found = sh script:'egrep -R SNAPSHOT .', returnStatus:true
Jonathan Hartb9615f22018-05-30 10:56:01 -070056
Jonathan Hart20225d82018-05-29 18:38:19 -070057 if (found == 0) {
58 timeout(time: 1, unit: 'HOURS') {
59 metadata = input id: 'manual-verify',
60 message: 'Found references to SNAPSHOT in the code. Are you sure you want to release?',
61 submitter: 'jono,dbainbri'
62 }
63 }
64 }
Jonathan Hart8d253832017-12-04 08:57:29 -080065
Jonathan Hart7942fa02017-12-04 15:43:00 -080066 // This step is basically to test that everything still builds once the version has
67 // been bumped up before we start pushing things publicly
Jonathan Hart69938f52017-12-04 14:10:59 -080068 stage ('Build and Test') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080069 // TODO can we do this with clean .m2?
70 sh 'mvn clean install'
Jonathan Hart7942fa02017-12-04 15:43:00 -080071 sh 'mvn javadoc:javadoc'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080072 }
73
Jonathan Hart69938f52017-12-04 14:10:59 -080074 stage ('Push to Gerrit') {
Jonathan Hart20225d82018-05-29 18:38:19 -070075 sshagent (credentials: ['gerrit-jenkins-user']) {
76 sh 'git push origin HEAD:refs/for/' + branch
77 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080078 }
Jonathan Hart8d253832017-12-04 08:57:29 -080079
Jonathan Hart69938f52017-12-04 14:10:59 -080080 stage ('Wait for merge') {
Jonathan Hartb9615f22018-05-30 10:56:01 -070081 wrap([$class: 'BuildUser']) {
82 echo env.BUILD_USER_ID
83 timeout(time: 1, unit: 'HOURS') {
84 metadata = input id: 'release-build',
85 message: 'Go to Gerrit and merge the release patch',
86 submitter: env.BUILD_USER_ID
87 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080088 }
89 }
90
Jonathan Hart69938f52017-12-04 14:10:59 -080091 stage ('Release to Maven Central') {
Jonathan Hart6c0cca02018-05-29 10:43:30 -070092 configFileProvider([configFile(fileId: 'onoscord-apps', variable: 'MAVEN_SETTINGS')]) {
93 sh 'mvn -s $MAVEN_SETTINGS -Prelease clean deploy'
94 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080095 }
96
Jonathan Hart7942fa02017-12-04 15:43:00 -080097 stage ('Wait for release on Sonatype') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080098 timeout(time: 1, unit: 'HOURS') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080099 metadata = input id: 'release-build',
100 message: 'Go to Sonatype and release the artifacts',
Jonathan Hart8df16392018-01-12 10:09:37 -0800101 submitter: 'jono,dbainbri'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800102 }
103 }
104
Jonathan Hart69938f52017-12-04 14:10:59 -0800105 stage ('Tag the release') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800106 sh 'git tag -a ' + version + ' -m "Tagging version ' + version + '"'
Jonathan Hart20225d82018-05-29 18:38:19 -0700107 sshagent (credentials: ['gerrit-jenkins-user']) {
108 sh 'git push origin ' + version
109 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800110 }
111
Jonathan Hart69938f52017-12-04 14:10:59 -0800112 stage ('Move to next SNAPSHOT version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800113 def snapshot = nextVersion + '-SNAPSHOT'
114 changeVersion(snapshot)
115 sh 'git add -A && git commit -m "Starting snapshot ' + snapshot + '"'
Jonathan Hart20225d82018-05-29 18:38:19 -0700116 sshagent (credentials: ['gerrit-jenkins-user']) {
117 sh 'git push origin HEAD:refs/for/' + branch
118 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800119 }
120
Jonathan Hart69938f52017-12-04 14:10:59 -0800121 stage ('Finish') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800122 sh 'echo "Released new app. Go to Gerrit and merge snapshot version bump"'
123 }
124
Jonathan Hart8d253832017-12-04 08:57:29 -0800125}
Jonathan Hartb9615f22018-05-30 10:56:01 -0700126