diff options
author | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 08:42:37 -0700 |
---|---|---|
committer | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 08:42:37 -0700 |
commit | 1d641cfa4dc7f3b61559dff1c1f4a82f3d4ddfdb (patch) | |
tree | 133258e58e9e73d2e2b7d63836d37e43ec2358a5 | |
parent | e52e67767076b29cb01939aa7bdd8fee9d205cc1 (diff) |
- Added onos update logging and timestamp.
- Took java check out of test mode by updating version to actual
Change-Id: Ic4507968fd203e6c84b5866e9abb07ca5a89d4f6
Signed-off-by: Ashlee Young <ashlee@onosfw.com>
-rwxr-xr-x | build.sh | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -20,7 +20,7 @@ ##### Settings ##### VERSION=1.0.0 AUTHOR="Ashlee Young" -MODIFIED="October 23, 2015" +MODIFIED="October 18, 2015" GERRITURL="git clone ssh://im2bz2pee@gerrit.opnfv.org:29418/onosfw" ONOSURL="https://github.com/opennetworkinglab/onos" SURICATAURL="https://github.com/inliniac/suricata" @@ -28,7 +28,7 @@ ONOSGIT="git clone --recursive $ONOSURL" GERRITROOT="$(pwd)" ONOSROOT=$GERRITROOT/framework/src/onos/ BUILDROOT=$GERRITROOT/framework/build -JAVA_VERSION=1.9 +JAVA_VERSION=1.8 ANT_VERSION=1.9.6 MAVEN_VERSION=3.3.3 ##### End Settings ##### @@ -89,6 +89,9 @@ updateONOS() cd $BUILDROOT git clone $ONOSURL onosproject rsync -arvP --delete --exclude=.git --exclude=.gitignore --exclude=.gitreview onosproject/ ../src/onos/ + cd onosproject + git log > ../onos_update.$(date +%s) + cd ../ rm -rf onosproject cd $GERRITROOT fi |