Ray Milkey | 3b66abc | 2018-08-13 15:12:45 -0700 | [diff] [blame] | 1 | #!/bin/bash -ex |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 2 | |
| 3 | # exit on errors |
| 4 | set -eu -o pipefail |
| 5 | |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 6 | ONOS_ROOT=`pwd` |
| 7 | . tools/build/envDefaults |
| 8 | |
Ray Milkey | 3b66abc | 2018-08-13 15:12:45 -0700 | [diff] [blame] | 9 | PATH=$PATH:/home/jenkins/bin |
| 10 | |
Ray Milkey | 4e5e77a | 2019-11-15 12:52:21 -0800 | [diff] [blame] | 11 | # set up JDK 11 if needed |
| 12 | if [ ${GERRIT_BRANCH} == "master" -o ${GERRIT_BRANCH} == "onos-2.2" ] |
| 13 | then |
| 14 | echo Installing OPEN JDK 11 |
| 15 | sudo update-java-alternatives -s java-11-amazon-corretto |
| 16 | java -version |
| 17 | else |
| 18 | echo Using default JDK |
| 19 | fi |
| 20 | |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 21 | # import GPG key |
| 22 | gpg --import jenkins.key |
| 23 | |
| 24 | # set up release build credentials |
| 25 | . onos-build-credentials |
| 26 | |
| 27 | # configure git settings |
| 28 | git config user.email "jenkins@onlab.us" |
| 29 | git config user.name "ONOS Jenkins User" |
| 30 | |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 31 | # stage the maven settings |
| 32 | mkdir -p ~/.m2 |
| 33 | mv settings.xml ~/.m2/settings.xml |
| 34 | |
| 35 | # stage and add the build SSH key |
| 36 | chmod 600 id_rsa.pub |
| 37 | ssh-add id_rsa.pub |
| 38 | |
| 39 | # Add the javadoc server to the list of known hosts |
| 40 | ssh-keyscan -H -t rsa api.onosproject.org >>~/.ssh/known_hosts |
| 41 | |
| 42 | # set user to use for uploading javadocs |
| 43 | WIKI_USER="jenkins" |
| 44 | export WIKI_USER |
| 45 | |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 46 | # lock gerrit to prevent checkins |
Carmelo Cascone | b603a71 | 2020-07-30 10:55:28 -0700 | [diff] [blame] | 47 | # 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 Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 50 | |
| 51 | # unlock on exit |
Carmelo Cascone | b603a71 | 2020-07-30 10:55:28 -0700 | [diff] [blame] | 52 | # trap "ssh -p 29418 gerrit.onosproject.org projectlock unlock onos ${GERRIT_BRANCH}" EXIT |
Ray Milkey | 7c8b3f2 | 2018-08-13 15:01:12 -0700 | [diff] [blame] | 53 | |
| 54 | # get the sources |
| 55 | git checkout $GERRIT_BRANCH |
| 56 | |
| 57 | # run the build |
| 58 | onos-build-and-upload ${ONOS_VERSION} ${ONOS_NEXT_VERSION} ${GERRIT_BRANCH} |