blob: 631f20511d23bd5e30947d243070d67649e437fd [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
Thomas Vachuska045c01d2014-12-04 00:18:06 -08004export ONOS_ROOT=${ONOS_ROOT:-~/onos}
tom5c255702014-09-18 06:57:39 -07005
6# M2 repository and Karaf gold bits
7export M2_REPO=${M2_REPO:-~/.m2/repository}
Jian Li11599162016-01-15 15:46:16 -08008export KARAF_VERSION=${KARAF_VERSION:-3.0.5}
Thomas Vachuskab105fd42014-10-20 09:02:27 -07009export KARAF_ZIP=${KARAF_ZIP:-~/Downloads/apache-karaf-$KARAF_VERSION.zip}
10export KARAF_TAR=${KARAF_TAR:-~/Downloads/apache-karaf-$KARAF_VERSION.tar.gz}
tom5c255702014-09-18 06:57:39 -070011export KARAF_DIST=$(basename $KARAF_ZIP .zip)
12
Pavlin Radoslavovaa90bb52014-10-15 16:28:32 -070013# Add ONOS-specific directories to the exectable PATH
Thomas Vachuska4702a262016-03-02 15:31:52 -080014export PATH="$ONOS_ROOT/tools/dev/bin:$ONOS_ROOT/tools/test/bin:$PATH"
15export PATH="$ONOS_ROOT/tools/build:$PATH"
Pavlin Radoslavovaa90bb52014-10-15 16:28:32 -070016
tom61e317d2014-10-08 11:18:02 -070017# Fallback build number us derived from from the user name & time
18export BUILD_NUMBER=${BUILD_NUMBER:-$(id -un)~$(date +'%Y/%m/%d@%H:%M')}
19
tom5c255702014-09-18 06:57:39 -070020# ONOS Version and onos.tar.gz staging environment
Brian O'Connor955c3162016-03-10 15:27:19 -080021export ONOS_POM_VERSION="1.6.0-SNAPSHOT"
22export ONOS_VERSION=${ONOS_VERSION:-1.6.0.$BUILD_NUMBER}
Thomas Vachuska734b7492015-03-11 20:42:07 -070023
Luca Pretef2049d12015-08-01 14:48:01 -070024# ONOS production bits (onos.tar.gz, onos.zip, onos.deb, onos.rpm) staging environment
tom61e317d2014-10-08 11:18:02 -070025export ONOS_BITS=onos-${ONOS_VERSION%~*}
tom5c255702014-09-18 06:57:39 -070026export ONOS_STAGE_ROOT=${ONOS_STAGE_ROOT:-/tmp}
tom5c255702014-09-18 06:57:39 -070027export ONOS_STAGE=$ONOS_STAGE_ROOT/$ONOS_BITS
Luca Pretee6183752015-07-29 01:55:50 -070028export ONOS_DEB_ROOT=$ONOS_STAGE_ROOT/deb
29export ONOS_DEB=$ONOS_STAGE.deb
Luca Pretef2049d12015-08-01 14:48:01 -070030export ONOS_RPM_ROOT=$ONOS_STAGE_ROOT/rpm
31export ONOS_RPM=$ONOS_STAGE.rpm
32export ONOS_RPM_VERSION=${ONOS_POM_VERSION//-/.}
tom5c255702014-09-18 06:57:39 -070033export ONOS_TAR=$ONOS_STAGE.tar.gz
Thomas Vachuska045c01d2014-12-04 00:18:06 -080034export ONOS_ZIP=$ONOS_STAGE.zip
tom5c255702014-09-18 06:57:39 -070035
Thomas Vachuska734b7492015-03-11 20:42:07 -070036# ONOS test bits (onos-test.tar.gz) staging environment
37export ONOS_TEST_BITS=onos-test-${ONOS_VERSION%~*}
38export ONOS_TEST_STAGE_ROOT=${ONOS_TEST_STAGE_ROOT:-/tmp}
39export ONOS_TEST_STAGE=$ONOS_STAGE_ROOT/$ONOS_TEST_BITS
40export ONOS_TEST_TAR=$ONOS_TEST_STAGE.tar.gz
41
tom5c255702014-09-18 06:57:39 -070042# Defaults for ONOS testing using remote machines.
Thomas Vachuskaa21bc502014-11-18 10:27:34 -080043# if [ -n "${ONOS_CELL}" -a -f $ONOS_ROOT/tools/test/cells/${ONOS_CELL} ]; then
44# . $ONOS_ROOT/tools/test/cells/${ONOS_CELL}
45# fi
tom5c255702014-09-18 06:57:39 -070046export ONOS_INSTALL_DIR="/opt/onos" # Installation directory on remote
47export OCI="${OCI:-192.168.56.101}" # ONOS Controller Instance
Jonathan Hart716cb212014-11-12 00:33:25 -080048export ONOS_USER="${ONOS_USER:-sdn}" # ONOS user on remote system
Charles M.C. Chandfbc6d82014-12-18 23:11:36 +080049export ONOS_GROUP="${ONOS_GROUP:-sdn}" # ONOS group on remote system
tom5c255702014-09-18 06:57:39 -070050export ONOS_PWD="rocks" # ONOS user password on remote system
Thomas Vachuskae76f6532015-07-08 09:40:53 -070051export ONOS_SCENARIOS=$ONOS_ROOT/tools/test/scenarios