diff options
author | Markos Chandras <mchandras@suse.de> | 2017-12-14 08:49:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-12-14 08:49:25 +0000 |
commit | b2dfffae695ea299ac5f11e48f99068390bcc671 (patch) | |
tree | f4ba09e83c99920acb59d733d3e36424b4ba75af /xci/config/env-vars | |
parent | 55916bc06fe49653441c899f9982e16ef1ef894b (diff) | |
parent | 151d8e21a5f146418e9f28d91c6e93edbac367ea (diff) |
Merge "xci: Fix checkout location for OpenStack-Ansible"
Diffstat (limited to 'xci/config/env-vars')
-rwxr-xr-x | xci/config/env-vars | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xci/config/env-vars b/xci/config/env-vars index 67ce443e..3777bec0 100755 --- a/xci/config/env-vars +++ b/xci/config/env-vars @@ -11,15 +11,17 @@ export OPNFV_HOST_IP=192.168.122.2 export XCI_FLAVOR_ANSIBLE_FILE_PATH=$XCI_PATH/xci/file/$XCI_FLAVOR export CI_LOOP=${CI_LOOP:-daily} export JOB_NAME=${JOB_NAME:-false} +# XCI_CACHE is a cache on localhost where repositories and scenarios are cloned. export XCI_CACHE=${XCI_PATH}/.cache +# OPNFV_XCI_CACHE is similar to XCI_CACHE but refers to the remote OPNFV host. +export OPNFV_XCI_CACHE="/root/releng-xci/.cache" export XCI_SCENARIOS_CACHE="${XCI_CACHE}/repos/scenarios" export XCI_PLAYBOOKS=${XCI_PATH}/xci/playbooks #------------------------------------------------------------------------------- -# Paths where git repositories of XCI Components will be cloned +# Paths where git repositories of XCI Components will be cloned on the OPNFV host #------------------------------------------------------------------------------- -export OPENSTACK_BIFROST_PATH="${XCI_CACHE}/repos/bifrost" -export OPENSTACK_OSA_PATH="${XCI_CACHE}/repos/openstack-ansible" +export OPENSTACK_OSA_PATH="${OPNFV_XCI_CACHE}/repos/openstack-ansible" # Logging export LOG_PATH=${LOG_PATH:-${XCI_PATH}/xci/logs} |