tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 1 | # Environmental defaults for ONOS build, package and test |
| 2 | |
| 3 | # Root of the ONOS source tree |
| 4 | export ONOS_ROOT=${ONOS_ROOT:-~/onos-next} |
| 5 | |
| 6 | # M2 repository and Karaf gold bits |
| 7 | export M2_REPO=${M2_REPO:-~/.m2/repository} |
Thomas Vachuska | b105fd4 | 2014-10-20 09:02:27 -0700 | [diff] [blame] | 8 | export KARAF_VERSION=${KARAF_VERSION:-3.0.1} |
| 9 | export KARAF_ZIP=${KARAF_ZIP:-~/Downloads/apache-karaf-$KARAF_VERSION.zip} |
| 10 | export KARAF_TAR=${KARAF_TAR:-~/Downloads/apache-karaf-$KARAF_VERSION.tar.gz} |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 11 | export KARAF_DIST=$(basename $KARAF_ZIP .zip) |
| 12 | |
Pavlin Radoslavov | aa90bb5 | 2014-10-15 16:28:32 -0700 | [diff] [blame] | 13 | # Add ONOS-specific directories to the exectable PATH |
| 14 | export PATH="$PATH:$ONOS_ROOT/tools/dev/bin:$ONOS_ROOT/tools/test/bin" |
| 15 | export PATH="$PATH:$ONOS_ROOT/tools/build" |
| 16 | |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 17 | # Fallback build number us derived from from the user name & time |
| 18 | export BUILD_NUMBER=${BUILD_NUMBER:-$(id -un)~$(date +'%Y/%m/%d@%H:%M')} |
| 19 | |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 20 | # ONOS Version and onos.tar.gz staging environment |
tom | 61e317d | 2014-10-08 11:18:02 -0700 | [diff] [blame] | 21 | export ONOS_POM_VERSION="1.0.0-SNAPSHOT" |
| 22 | export ONOS_VERSION=${ONOS_VERSION:-1.0.0.$BUILD_NUMBER} |
| 23 | export ONOS_BITS=onos-${ONOS_VERSION%~*} |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 24 | export ONOS_STAGE_ROOT=${ONOS_STAGE_ROOT:-/tmp} |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 25 | export ONOS_STAGE=$ONOS_STAGE_ROOT/$ONOS_BITS |
| 26 | export ONOS_TAR=$ONOS_STAGE.tar.gz |
| 27 | |
| 28 | # Defaults for ONOS testing using remote machines. |
Pavlin Radoslavov | 9361721 | 2014-10-16 09:54:04 -0700 | [diff] [blame] | 29 | if [ -n "${ONOS_CELL}" -a -f $ONOS_ROOT/tools/test/cells/${ONOS_CELL} ]; then |
| 30 | . $ONOS_ROOT/tools/test/cells/${ONOS_CELL} |
| 31 | fi |
tom | 5c25570 | 2014-09-18 06:57:39 -0700 | [diff] [blame] | 32 | export ONOS_INSTALL_DIR="/opt/onos" # Installation directory on remote |
| 33 | export OCI="${OCI:-192.168.56.101}" # ONOS Controller Instance |
| 34 | export ONOS_USER="sdn" # ONOS user on remote system |
| 35 | export ONOS_PWD="rocks" # ONOS user password on remote system |