diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2017-11-24 16:51:28 +0800 |
---|---|---|
committer | zhihui wu <wu.zhihui1@zte.com.cn> | 2017-11-24 16:51:28 +0800 |
commit | f9a4031c4e8146c350065878b95cd40d81aa4fe7 (patch) | |
tree | 42fdc6806d6beb866ad5d2bccc6c9cee4f583c40 /tests/ci/utils/start_services.sh | |
parent | 717a05251f782d81a1658d65e7f78092d9f4b566 (diff) |
distinguish fuel and mcp in ci scripts
Because ci parameter still use fuel to represent mcp, but they are
two different installers for qtip. Distinguish them in qtip ci scripts.
Change-Id: I74165da39a607c26464ced04e1ad3ca4ed4e40e5
Signed-off-by: zhihui wu <wu.zhihui1@zte.com.cn>
Diffstat (limited to 'tests/ci/utils/start_services.sh')
-rw-r--r-- | tests/ci/utils/start_services.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ci/utils/start_services.sh b/tests/ci/utils/start_services.sh index 5c95ed7e..0932d45e 100644 --- a/tests/ci/utils/start_services.sh +++ b/tests/ci/utils/start_services.sh @@ -27,5 +27,10 @@ grep "export" ${TMPFILE} | sed "s/export //" >> $ENV_FILE # eliminate warning message "Invalid -W option ignored: invalid action: '"ignore'" sed -i '/^PYTHONWARNINGS=/d' $ENV_FILE +# In CI job, it still uses fuel to represent MCP. +if [[ "${BRANCH}" =~ "master" and "${INSTALLER_TYPE}" =~ "fuel" ]]; then + sed -i 's/INSTALLER_TYPE=fuel/INSTALLER_TYPE=mcp' $ENV_FILE +fi + docker-compose -f $script_dir/${TEST_SUITE}/docker-compose.yaml pull docker-compose -f $script_dir/${TEST_SUITE}/docker-compose.yaml up -d |