summaryrefslogtreecommitdiffstats
path: root/jjb/xci/xci-deploy.sh
diff options
context:
space:
mode:
authorFatih Degirmenci <fdegir@gmail.com>2018-02-14 21:24:33 +0100
committerFatih Degirmenci <fdegir@gmail.com>2018-02-14 21:28:42 +0100
commit775c287675b46e1ab95a7f31529b46025c3a8ec8 (patch)
tree422e8f3aaf65f1269918ebdc20085cebdf27211e /jjb/xci/xci-deploy.sh
parent25ef72f13b1a25c4d87bd5701616527c58e89f8d (diff)
Rename var XCI_LOOP to CI_LOOP to align with Functest
Change-Id: If5c5b828312dc588515589b8075b9754537b8f86 Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
Diffstat (limited to 'jjb/xci/xci-deploy.sh')
-rwxr-xr-xjjb/xci/xci-deploy.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/jjb/xci/xci-deploy.sh b/jjb/xci/xci-deploy.sh
index 211d282d3..71cf96d8d 100755
--- a/jjb/xci/xci-deploy.sh
+++ b/jjb/xci/xci-deploy.sh
@@ -15,14 +15,14 @@ cd $WORKSPACE/xci
# for daily jobs, we want to use working versions
# for periodic jobs, we will use whatever is set in the job, probably master
-if [[ "$XCI_LOOP" == "daily" ]]; then
+if [[ "$CI_LOOP" == "daily" ]]; then
# source pinned-vars to get releng version
source ./config/pinned-versions
# checkout the version
git checkout -q $OPNFV_RELENG_VERSION
echo "Info: Using $OPNFV_RELENG_VERSION"
-elif [[ "$XCI_LOOP" == "periodic" ]]; then
+elif [[ "$CI_LOOP" == "periodic" ]]; then
echo "Info: Using $OPNFV_RELENG_VERSION"
fi
@@ -31,7 +31,7 @@ fi
# to take this into account while deploying anyways
# clone openstack-ansible
# stable/ocata already use pinned versions so this is only valid for master
-if [[ "$XCI_LOOP" == "periodic" && "$OPENSTACK_OSA_VERSION" == "master" ]]; then
+if [[ "$CI_LOOP" == "periodic" && "$OPENSTACK_OSA_VERSION" == "master" ]]; then
cd $WORKSPACE
# get the url to openstack-ansible git
source ./config/env-vars