blob: 4cb931f2497e3b620526c0f1937c226d92d30a16 [file] [log] [blame]
Thomas Vachuska683b31b2015-01-26 11:54:31 -08001#!/bin/bash
2# -----------------------------------------------------------------------------
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
9export NEW_VERSION=$1
10[ -z "$NEW_VERSION" ] && echo "New ONOS version not specified" && exit 1
11
12export NEW_VERSION_SHORT=${NEW_VERSION%-SNAPSHOT}
13[ "$NEW_VERSION" != "$NEW_VERSION_SHORT" ] && echo "Version is a SNAPSHOT" && exit 1;
14
15cd $ONOS_ROOT
16
17# TODO: Create a new branch for this activity?
18
19# Change the version
20onos-change-version $NEW_VERSION
21
22# Build ONOS & deploy to staging repo using the release profile.
23onos-build && onos-package && mvn -Prelease clean deploy -DskipTests
24
25# Build ONOS docs
26onos-build-docs
27
28# Build ONOS archetypes & deploy to staging repo using the release profile.
29# Note that release of the staging repository is a separate manual step.
30cd tools/package/archetype
Brian O'Connord4cd0bf2015-02-28 23:13:48 -080031mvn clean install && onos-archetypes-test && mvn -Prelease clean deploy
Thomas Vachuska683b31b2015-01-26 11:54:31 -080032
33# Commit newly versioned artifacts and issue a tag.
34git commit -a -m"Tagging $NEW_VERSION"
35git tag -sm"Tagging $NEW_VERSION" $NEW_VERSION #signed tag
36
37# TODO: push?