Thomas Vachuska | 683b31b | 2015-01-26 11:54:31 -0800 | [diff] [blame] | 1 | #!/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 | |
Brian O'Connor | 608e03a | 2015-05-21 17:56:07 -0700 | [diff] [blame] | 9 | set -e |
| 10 | |
Thomas Vachuska | 683b31b | 2015-01-26 11:54:31 -0800 | [diff] [blame] | 11 | export NEW_VERSION=$1 |
| 12 | [ -z "$NEW_VERSION" ] && echo "New ONOS version not specified" && exit 1 |
| 13 | |
| 14 | export NEW_VERSION_SHORT=${NEW_VERSION%-SNAPSHOT} |
| 15 | [ "$NEW_VERSION" != "$NEW_VERSION_SHORT" ] && echo "Version is a SNAPSHOT" && exit 1; |
| 16 | |
| 17 | cd $ONOS_ROOT |
| 18 | |
| 19 | # TODO: Create a new branch for this activity? |
| 20 | |
| 21 | # Change the version |
| 22 | onos-change-version $NEW_VERSION |
Brian O'Connor | 6b30e1b | 2015-03-11 16:44:16 -0700 | [diff] [blame] | 23 | export ONOS_VERSION=$NEW_VERSION |
Thomas Vachuska | 683b31b | 2015-01-26 11:54:31 -0800 | [diff] [blame] | 24 | |
| 25 | # Build ONOS & deploy to staging repo using the release profile. |
Brian O'Connor | 3be2cc5 | 2015-12-11 17:09:05 -0800 | [diff] [blame] | 26 | onos-build && onos-package --tar --zip && mvn -Prelease clean deploy -DskipTests |
Thomas Vachuska | 683b31b | 2015-01-26 11:54:31 -0800 | [diff] [blame] | 27 | |
| 28 | # Build ONOS docs |
| 29 | onos-build-docs |
| 30 | |
| 31 | # Build ONOS archetypes & deploy to staging repo using the release profile. |
| 32 | # Note that release of the staging repository is a separate manual step. |
Brian O'Connor | d783f2f | 2015-03-17 19:11:40 -0700 | [diff] [blame] | 33 | pushd tools/package/archetypes/ |
Brian O'Connor | d4cd0bf | 2015-02-28 23:13:48 -0800 | [diff] [blame] | 34 | mvn clean install && onos-archetypes-test && mvn -Prelease clean deploy |
Brian O'Connor | d783f2f | 2015-03-17 19:11:40 -0700 | [diff] [blame] | 35 | popd |
Thomas Vachuska | 683b31b | 2015-01-26 11:54:31 -0800 | [diff] [blame] | 36 | |
| 37 | # Commit newly versioned artifacts and issue a tag. |
| 38 | git commit -a -m"Tagging $NEW_VERSION" |
| 39 | git tag -sm"Tagging $NEW_VERSION" $NEW_VERSION #signed tag |
| 40 | |
| 41 | # TODO: push? |