blob: 9f435111914488e2560f573a6b7f145c10b0ffcb [file] [log] [blame]
Ray Milkey3b66abc2018-08-13 15:12:45 -07001#!/bin/bash -ex
Ray Milkey7c8b3f22018-08-13 15:01:12 -07002
3# exit on errors
4set -eu -o pipefail
5
Ray Milkey7c8b3f22018-08-13 15:01:12 -07006ONOS_ROOT=`pwd`
7. tools/build/envDefaults
8
Ray Milkey3b66abc2018-08-13 15:12:45 -07009PATH=$PATH:/home/jenkins/bin
10
Ray Milkey4e5e77a2019-11-15 12:52:21 -080011# set up JDK 11 if needed
12if [ ${GERRIT_BRANCH} == "master" -o ${GERRIT_BRANCH} == "onos-2.2" ]
13then
14 echo Installing OPEN JDK 11
15 sudo update-java-alternatives -s java-11-amazon-corretto
16 java -version
17else
18 echo Using default JDK
19fi
20
Ray Milkey7c8b3f22018-08-13 15:01:12 -070021# import GPG key
22gpg --import jenkins.key
23
24# set up release build credentials
25. onos-build-credentials
26
27# configure git settings
28git config user.email "jenkins@onlab.us"
29git config user.name "ONOS Jenkins User"
30
Ray Milkey7c8b3f22018-08-13 15:01:12 -070031# stage the maven settings
32mkdir -p ~/.m2
33mv settings.xml ~/.m2/settings.xml
34
35# stage and add the build SSH key
36chmod 600 id_rsa.pub
37ssh-add id_rsa.pub
38
39# Add the javadoc server to the list of known hosts
40ssh-keyscan -H -t rsa api.onosproject.org >>~/.ssh/known_hosts
41
42# set user to use for uploading javadocs
43WIKI_USER="jenkins"
44export WIKI_USER
45
Ray Milkey7c8b3f22018-08-13 15:01:12 -070046# lock gerrit to prevent checkins
Carmelo Casconeb603a712020-07-30 10:55:28 -070047# FIXME: re-enable locking when projectlock will be added to new ONOS gerrit
48# or change the release process to tag a specific commit instead of the whole branch
49# ssh -p 29418 gerrit.onosproject.org projectlock lock onos ${GERRIT_BRANCH}
Ray Milkey7c8b3f22018-08-13 15:01:12 -070050
51# unlock on exit
Carmelo Casconeb603a712020-07-30 10:55:28 -070052# trap "ssh -p 29418 gerrit.onosproject.org projectlock unlock onos ${GERRIT_BRANCH}" EXIT
Ray Milkey7c8b3f22018-08-13 15:01:12 -070053
54# get the sources
55git checkout $GERRIT_BRANCH
56
57# run the build
58onos-build-and-upload ${ONOS_VERSION} ${ONOS_NEXT_VERSION} ${GERRIT_BRANCH}