blob: 83d45061f1ede5b987ee55bb52ec7adb22c2df3a [file] [log] [blame]
Ray Milkey8db3c102017-11-02 13:08:20 -07001#!/bin/bash -ex
Thomas Vachuska683b31b2015-01-26 11:54:31 -08002# -----------------------------------------------------------------------------
3# Drives the ONOS release process.
4# -----------------------------------------------------------------------------
5
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
Brian O'Connor608e03a2015-05-21 17:56:07 -07009set -e
10
Brian O'Connord730b222016-03-01 18:32:38 -080011export NEW_VERSION=${1:-$ONOS_VERSION}
Ray Milkey13d3ae32017-01-03 15:00:04 -080012DRY_RUN=${2:-""}
13dryRun=0
14if [ "${DRY_RUN}" == "--dry-run" ]; then
15 dryRun=1
16fi
17
Thomas Vachuska683b31b2015-01-26 11:54:31 -080018[ -z "$NEW_VERSION" ] && echo "New ONOS version not specified" && exit 1
19
20export NEW_VERSION_SHORT=${NEW_VERSION%-SNAPSHOT}
21[ "$NEW_VERSION" != "$NEW_VERSION_SHORT" ] && echo "Version is a SNAPSHOT" && exit 1;
22
23cd $ONOS_ROOT
24
Ray Milkey4867af22018-08-10 16:52:28 -070025# TODO: Create a new branch for this activity?
26
Thomas Vachuska683b31b2015-01-26 11:54:31 -080027# Change the version
28onos-change-version $NEW_VERSION
Brian O'Connor6b30e1b2015-03-11 16:44:16 -070029export ONOS_VERSION=$NEW_VERSION
Thomas Vachuska683b31b2015-01-26 11:54:31 -080030
Thomas Vachuskaf7659332016-03-02 00:36:55 -080031# Validate integrity of the versioning
32onos-validate-change-version
33
Thomas Vachuska683b31b2015-01-26 11:54:31 -080034# Build ONOS & deploy to staging repo using the release profile.
Ray Milkey4867af22018-08-10 16:52:28 -070035onos-buck build onos
Thomas Vachuskabe1a1962016-10-25 16:59:29 -070036
Ray Milkey78ce4002018-08-10 11:16:44 -070037if [ $dryRun -eq 0 ]; then
Ray Milkey4867af22018-08-10 16:52:28 -070038 time onos-buck-publish
Ray Milkey78ce4002018-08-10 11:16:44 -070039else
Ray Milkey4867af22018-08-10 16:52:28 -070040 time onos-buck-publish-local
Ray Milkey78ce4002018-08-10 11:16:44 -070041fi
Thomas Vachuska683b31b2015-01-26 11:54:31 -080042
Ray Milkey4867af22018-08-10 16:52:28 -070043# Build ONOS docs
44onos-buck build //docs:internal //docs:external
Ray Milkey78ce4002018-08-10 11:16:44 -070045
Ray Milkey4867af22018-08-10 16:52:28 -070046# Package test tar.gz
47onos-buck build //:onos-test
48
49# Package admin tar.gz
50onos-buck build //:onos-admin
Thomas Vachuska7f2a3562018-02-28 10:02:16 -080051
Thomas Vachuska683b31b2015-01-26 11:54:31 -080052# Build ONOS archetypes & deploy to staging repo using the release profile.
53# Note that release of the staging repository is a separate manual step.
Ray Milkeyf3aba5f2017-01-09 16:47:14 -080054if [ $dryRun -eq 0 ]; then
Ray Milkey4867af22018-08-10 16:52:28 -070055 export MVN_CLI_OPTS=-Pstaging
Ray Milkeyf3aba5f2017-01-09 16:47:14 -080056 pushd tools/package/archetypes/
Ray Milkey4867af22018-08-10 16:52:28 -070057 mvn -B -Pstaging clean install && onos-archetypes-test && mvn -Pstaging -Prelease clean deploy
Ray Milkeyf3aba5f2017-01-09 16:47:14 -080058 popd
Ray Milkey4867af22018-08-10 16:52:28 -070059 unset MVN_CLI_OPTS
Ray Milkeyf3aba5f2017-01-09 16:47:14 -080060else
61 pushd tools/package/archetypes/
Ray Milkeydeb79f82018-06-04 12:05:27 -070062 mvn -B clean install && onos-archetypes-test
Ray Milkeyf3aba5f2017-01-09 16:47:14 -080063 popd
64fi
Thomas Vachuska683b31b2015-01-26 11:54:31 -080065
Ray Milkeyd341e612017-11-02 15:03:56 -070066if [ $dryRun -eq 0 ]; then
67 # Commit newly versioned artifacts and issue a tag.
68 git commit -a -m"Tagging $NEW_VERSION"
69 git tag -sm"Tagging $NEW_VERSION" $NEW_VERSION #signed tag
70fi
Ray Milkey4867af22018-08-10 16:52:28 -070071
72# TODO: push?