blob: ff3c19caa59eb3f238f1d1fa47a3aa79817d3fb8 [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 Hart20225d82018-05-29 18:38:19 -070028 stage ('Configure Git') {
29 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 Hart145b5112018-05-29 16:16:56 -070033 }
34
Jonathan Hart7942fa02017-12-04 15:43:00 -080035 stage ('Checkout code') {
36 cleanWs()
Jonathan Hart20225d82018-05-29 18:38:19 -070037
38 sshagent (credentials: ['gerrit-jenkins-user']) {
39 git branch: branch, url: 'ssh://jenkins@gerrit.opencord.org:29418/' + app, credentialsId: 'gerrit-jenkins-user'
Jonathan Hart7942fa02017-12-04 15:43:00 -080040
Jonathan Hart20225d82018-05-29 18:38:19 -070041 sh 'gitdir=$(git rev-parse --git-dir); scp -p -P 29418 jenkins@gerrit.opencord.org:hooks/commit-msg ${gitdir}/hooks/'
42 }
Jonathan Hart7b395df2017-12-04 10:07:17 -080043 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080044
Jonathan Hart7942fa02017-12-04 15:43:00 -080045 stage ('Move to release version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080046 changeVersion(version)
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080047 sh 'git add -A && git commit -m "Release version ' + version + '"'
48 }
Jonathan Hart20225d82018-05-29 18:38:19 -070049
50 stage ('Verify code') {
51 def found = sh script:'egrep -R SNAPSHOT .' returnStatus:true
52 if (found == 0) {
53 timeout(time: 1, unit: 'HOURS') {
54 metadata = input id: 'manual-verify',
55 message: 'Found references to SNAPSHOT in the code. Are you sure you want to release?',
56 submitter: 'jono,dbainbri'
57 }
58 }
59 }
Jonathan Hart8d253832017-12-04 08:57:29 -080060
Jonathan Hart7942fa02017-12-04 15:43:00 -080061 // This step is basically to test that everything still builds once the version has
62 // been bumped up before we start pushing things publicly
Jonathan Hart69938f52017-12-04 14:10:59 -080063 stage ('Build and Test') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080064 // TODO can we do this with clean .m2?
65 sh 'mvn clean install'
Jonathan Hart7942fa02017-12-04 15:43:00 -080066 sh 'mvn javadoc:javadoc'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080067 }
68
Jonathan Hart69938f52017-12-04 14:10:59 -080069 stage ('Push to Gerrit') {
Jonathan Hart20225d82018-05-29 18:38:19 -070070 sshagent (credentials: ['gerrit-jenkins-user']) {
71 sh 'git push origin HEAD:refs/for/' + branch
72 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080073 }
Jonathan Hart8d253832017-12-04 08:57:29 -080074
Jonathan Hart69938f52017-12-04 14:10:59 -080075 stage ('Wait for merge') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080076 timeout(time: 1, unit: 'HOURS') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080077 metadata = input id: 'release-build',
78 message: 'Go to Gerrit and merge the release patch',
Jonathan Hart8df16392018-01-12 10:09:37 -080079 submitter: 'jono,dbainbri'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080080 }
81 }
82
Jonathan Hart69938f52017-12-04 14:10:59 -080083 stage ('Release to Maven Central') {
Jonathan Hart6c0cca02018-05-29 10:43:30 -070084 configFileProvider([configFile(fileId: 'onoscord-apps', variable: 'MAVEN_SETTINGS')]) {
85 sh 'mvn -s $MAVEN_SETTINGS -Prelease clean deploy'
86 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080087 }
88
Jonathan Hart7942fa02017-12-04 15:43:00 -080089 stage ('Wait for release on Sonatype') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080090 timeout(time: 1, unit: 'HOURS') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080091 metadata = input id: 'release-build',
92 message: 'Go to Sonatype and release the artifacts',
Jonathan Hart8df16392018-01-12 10:09:37 -080093 submitter: 'jono,dbainbri'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080094 }
95 }
96
Jonathan Hart69938f52017-12-04 14:10:59 -080097 stage ('Tag the release') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080098 sh 'git tag -a ' + version + ' -m "Tagging version ' + version + '"'
Jonathan Hart20225d82018-05-29 18:38:19 -070099 sshagent (credentials: ['gerrit-jenkins-user']) {
100 sh 'git push origin ' + version
101 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800102 }
103
Jonathan Hart69938f52017-12-04 14:10:59 -0800104 stage ('Move to next SNAPSHOT version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800105 def snapshot = nextVersion + '-SNAPSHOT'
106 changeVersion(snapshot)
107 sh 'git add -A && git commit -m "Starting snapshot ' + snapshot + '"'
Jonathan Hart20225d82018-05-29 18:38:19 -0700108 sshagent (credentials: ['gerrit-jenkins-user']) {
109 sh 'git push origin HEAD:refs/for/' + branch
110 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800111 }
112
Jonathan Hart69938f52017-12-04 14:10:59 -0800113 stage ('Finish') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -0800114 sh 'echo "Released new app. Go to Gerrit and merge snapshot version bump"'
115 }
116
Jonathan Hart8d253832017-12-04 08:57:29 -0800117}