blob: 609182b4ca71cfa89a64436e291a89086e1744cc [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 Hart145b5112018-05-29 16:16:56 -070028 stage ('Debug') {
29 sh 'cat ~/.ssh/known_hosts'
30 }
31
Jonathan Hart7942fa02017-12-04 15:43:00 -080032 stage ('Checkout code') {
33 cleanWs()
34
35 git branch: branch, url: 'ssh://jenkins@gerrit.opencord.org:29418/' + app
36
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080037 sh 'gitdir=$(git rev-parse --git-dir); scp -p -P 29418 jenkins@gerrit.opencord.org:hooks/commit-msg ${gitdir}/hooks/'
Jonathan Hart7b395df2017-12-04 10:07:17 -080038 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080039
Jonathan Hart7942fa02017-12-04 15:43:00 -080040 stage ('Move to release version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080041 changeVersion(version)
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080042 sh 'git add -A && git commit -m "Release version ' + version + '"'
43 }
Jonathan Hart8d253832017-12-04 08:57:29 -080044
Jonathan Hart7942fa02017-12-04 15:43:00 -080045 // This step is basically to test that everything still builds once the version has
46 // been bumped up before we start pushing things publicly
Jonathan Hart69938f52017-12-04 14:10:59 -080047 stage ('Build and Test') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080048 // TODO can we do this with clean .m2?
49 sh 'mvn clean install'
Jonathan Hart7942fa02017-12-04 15:43:00 -080050 sh 'mvn javadoc:javadoc'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080051 }
52
Jonathan Hart69938f52017-12-04 14:10:59 -080053 stage ('Push to Gerrit') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080054 sh 'git push origin HEAD:refs/for/' + branch
55 }
Jonathan Hart8d253832017-12-04 08:57:29 -080056
Jonathan Hart69938f52017-12-04 14:10:59 -080057 stage ('Wait for merge') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080058 timeout(time: 1, unit: 'HOURS') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080059 metadata = input id: 'release-build',
60 message: 'Go to Gerrit and merge the release patch',
Jonathan Hart8df16392018-01-12 10:09:37 -080061 submitter: 'jono,dbainbri'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080062 }
63 }
64
Jonathan Hart69938f52017-12-04 14:10:59 -080065 stage ('Release to Maven Central') {
Jonathan Hart6c0cca02018-05-29 10:43:30 -070066 configFileProvider([configFile(fileId: 'onoscord-apps', variable: 'MAVEN_SETTINGS')]) {
67 sh 'mvn -s $MAVEN_SETTINGS -Prelease clean deploy'
68 }
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080069 }
70
Jonathan Hart7942fa02017-12-04 15:43:00 -080071 stage ('Wait for release on Sonatype') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080072 timeout(time: 1, unit: 'HOURS') {
Jonathan Hart7942fa02017-12-04 15:43:00 -080073 metadata = input id: 'release-build',
74 message: 'Go to Sonatype and release the artifacts',
Jonathan Hart8df16392018-01-12 10:09:37 -080075 submitter: 'jono,dbainbri'
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080076 }
77 }
78
Jonathan Hart69938f52017-12-04 14:10:59 -080079 stage ('Tag the release') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080080 sh 'git tag -a ' + version + ' -m "Tagging version ' + version + '"'
81 sh 'git push origin ' + version
82 }
83
Jonathan Hart69938f52017-12-04 14:10:59 -080084 stage ('Move to next SNAPSHOT version') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080085 def snapshot = nextVersion + '-SNAPSHOT'
86 changeVersion(snapshot)
87 sh 'git add -A && git commit -m "Starting snapshot ' + snapshot + '"'
88 sh 'git push origin HEAD:refs/for/' + branch
89 }
90
Jonathan Hart69938f52017-12-04 14:10:59 -080091 stage ('Finish') {
Jonathan Hart5cbd2d72017-12-04 13:45:19 -080092 sh 'echo "Released new app. Go to Gerrit and merge snapshot version bump"'
93 }
94
Jonathan Hart8d253832017-12-04 08:57:29 -080095}