From 1d641cfa4dc7f3b61559dff1c1f4a82f3d4ddfdb Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 08:42:37 -0700 Subject: - 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 --- build.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index f4731d45..ad03a6df 100755 --- a/build.sh +++ b/build.sh @@ -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 -- cgit 1.2.3-korg