blob: 0888cf6169b06a08773a807c5b7e8605febafaf9 [file] [log] [blame]
Ray Milkey3ac00792016-12-01 14:28:15 -08001#!/bin/bash
2# -----------------------------------------------------------------------------
3# Builds the release bits and uploads them.
4# -----------------------------------------------------------------------------
5
6VERSION=$1
7NEXT_VERSION=$2
8BRANCH=$3
Ray Milkey13d3ae32017-01-03 15:00:04 -08009DRY_RUN=$4
10
11dryRun=0
12if [ "${DRY_RUN}" == "--dry-run" ]; then
13 dryRun=1
14fi
Ray Milkey3ac00792016-12-01 14:28:15 -080015
16set -e
17set -x
18
19# fix version strings, build artifacts, upload artifacts
Ray Milkey863677e2017-08-28 11:10:37 -070020onos-release $VERSION $DRY_RUN
Ray Milkey3ac00792016-12-01 14:28:15 -080021
Ray Milkey13d3ae32017-01-03 15:00:04 -080022if [ $dryRun -eq 0 ]; then
23 # upload docs
24 onos-upload-docs ${WIKI_USER}
Ray Milkey3ac00792016-12-01 14:28:15 -080025
Ray Milkey13d3ae32017-01-03 15:00:04 -080026 # upload release bits
27 onos-upload-bits
Ray Milkey3ac00792016-12-01 14:28:15 -080028
Ray Milkey13d3ae32017-01-03 15:00:04 -080029 # spot check that uploaded artifacts are correct
Ray Milkeyc8e13f32017-08-29 13:57:13 -070030 check-uploaded-maven-artifacts $VERSION $ONOS_ROOT https://oss.sonatype.org/content/groups/staging
Ray Milkey3ac00792016-12-01 14:28:15 -080031
Ray Milkey13d3ae32017-01-03 15:00:04 -080032 # set the version strings to the next version
33 onos-snapshot ${NEXT_VERSION}
Ray Milkey3ac00792016-12-01 14:28:15 -080034
Ray Milkey13d3ae32017-01-03 15:00:04 -080035 # Push version string changes to git
36 git push origin ${BRANCH}
Ray Milkey3ac00792016-12-01 14:28:15 -080037
Ray Milkey13d3ae32017-01-03 15:00:04 -080038 # Push tag for this build to git
39 git push origin ${VERSION}
40fi