blob: 9c17212f09dd8e8e7ad237c20bd3db03f280b7ab [file] [log] [blame]
tom5c255702014-09-18 06:57:39 -07001# Environmental defaults for ONOS build, package and test
2
3# Root of the ONOS source tree
4export ONOS_ROOT=${ONOS_ROOT:-~/onos-next}
5
6# M2 repository and Karaf gold bits
7export M2_REPO=${M2_REPO:-~/.m2/repository}
8export KARAF_ZIP=${KARAF_ZIP:-~/Downloads/apache-karaf-3.0.1.zip}
tom2d7acb72014-09-22 22:13:00 -07009export KARAF_TAR=${KARAF_TAR:-~/Downloads/apache-karaf-3.0.1.tar.gz}
tom5c255702014-09-18 06:57:39 -070010export KARAF_DIST=$(basename $KARAF_ZIP .zip)
11
Pavlin Radoslavovaa90bb52014-10-15 16:28:32 -070012# Add ONOS-specific directories to the exectable PATH
13export PATH="$PATH:$ONOS_ROOT/tools/dev/bin:$ONOS_ROOT/tools/test/bin"
14export PATH="$PATH:$ONOS_ROOT/tools/build"
15
tom61e317d2014-10-08 11:18:02 -070016# Fallback build number us derived from from the user name & time
17export BUILD_NUMBER=${BUILD_NUMBER:-$(id -un)~$(date +'%Y/%m/%d@%H:%M')}
18
tom5c255702014-09-18 06:57:39 -070019# ONOS Version and onos.tar.gz staging environment
tom61e317d2014-10-08 11:18:02 -070020export ONOS_POM_VERSION="1.0.0-SNAPSHOT"
21export ONOS_VERSION=${ONOS_VERSION:-1.0.0.$BUILD_NUMBER}
22export ONOS_BITS=onos-${ONOS_VERSION%~*}
tom5c255702014-09-18 06:57:39 -070023export ONOS_STAGE_ROOT=${ONOS_STAGE_ROOT:-/tmp}
tom5c255702014-09-18 06:57:39 -070024export ONOS_STAGE=$ONOS_STAGE_ROOT/$ONOS_BITS
25export ONOS_TAR=$ONOS_STAGE.tar.gz
26
27# Defaults for ONOS testing using remote machines.
Pavlin Radoslavov93617212014-10-16 09:54:04 -070028if [ -n "${ONOS_CELL}" -a -f $ONOS_ROOT/tools/test/cells/${ONOS_CELL} ]; then
29 . $ONOS_ROOT/tools/test/cells/${ONOS_CELL}
30fi
tom5c255702014-09-18 06:57:39 -070031export ONOS_INSTALL_DIR="/opt/onos" # Installation directory on remote
32export OCI="${OCI:-192.168.56.101}" # ONOS Controller Instance
33export ONOS_USER="sdn" # ONOS user on remote system
34export ONOS_PWD="rocks" # ONOS user password on remote system