diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-08 15:27:00 +0100 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-01-11 13:36:31 +0000 |
commit | 970ee3eb202a5986b2da918ef034d1a1aba4520a (patch) | |
tree | 44dab142fb9cb3860f3e5b8c6ccae7f3be4faebd /docker/common.sh | |
parent | 55048bcbd8db2c8975faa233a260fbc3222e9dcd (diff) |
Prepare onos integration in Functest
JIRA: FUNCTEST-50
Change-Id: I50c7db5a05dd5aa78321ba77fab3902232ea4f36
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
(cherry picked from commit 2140461198cdb8dea2f60a66a0ddf90bb1ef54da)
Diffstat (limited to 'docker/common.sh')
-rwxr-xr-x | docker/common.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/common.sh b/docker/common.sh index 82a4719a1..4ea0907a4 100755 --- a/docker/common.sh +++ b/docker/common.sh @@ -53,6 +53,8 @@ VIMS_BRANCH=$(cat $config_file | grep -w vims_test_branch | awk 'END {print $NF} VIMS_COMMIT=$(cat $config_file | grep -w vims_test_commit | awk 'END {print $NF}') BGPVPN_BRANCH=$(cat $config_file | grep -w bgpvpn_branch | awk 'END {print $NF}') BGPVPN_COMMIT=$(cat $config_file | grep -w bgpvpn_commit | awk 'END {print $NF}') +ONOS_BRANCH=$(cat $config_file | grep -w onos_branch | awk 'END {print $NF}') +ONOS_COMMIT=$(cat $config_file | grep -w onos_commit | awk 'END {print $NF}') echo "_____Parsed needed data from ${config_file}:" @@ -76,6 +78,8 @@ echo "RALLY_BRANCH=${RALLY_BRANCH}" echo "RALLY_COMMIT=${RALLY_COMMIT}" echo "VIMS_BRANCH=${VIMS_BRANCH}" echo "VIMS_COMMIT=${VIMS_COMMIT}" +echo "ONOS_BRANCH=${ONOS_BRANCH}" +echo "ONOS_COMMIT=${ONOS_COMMIT}" echo "############################" info () { |