For now cloud tools are not needed in CI (#9818)

Currently there is "unbound" variable error printed in CI logs
because of that.
This commit is contained in:
Jarek Potiuk 2020-07-14 16:35:33 +02:00 коммит произвёл GitHub
Родитель 593a0ddaae
Коммит 69f82e66af
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -45,9 +45,11 @@ RUN_TESTS=${RUN_TESTS:="false"}
CI=${CI:="false"}
INSTALL_AIRFLOW_VERSION="${INSTALL_AIRFLOW_VERSION:=""}"
# Create links for useful CLI tools
# shellcheck source=scripts/ci/run_cli_tool.sh
source <(bash scripts/ci/run_cli_tool.sh)
if [[ ${CI} == "false" ]]; then
# Create links for useful CLI tools
# shellcheck source=scripts/ci/run_cli_tool.sh
source <(bash scripts/ci/run_cli_tool.sh)
fi
if [[ ${AIRFLOW_VERSION} == *1.10* || ${INSTALL_AIRFLOW_VERSION} == *1.10* ]]; then
export RUN_AIRFLOW_1_10="true"