Skip to content

Commit

Permalink
For now cloud tools are not needed in CI (apache#9818)
Browse files Browse the repository at this point in the history
Currently there is "unbound" variable error printed in CI logs
because of that.

(cherry picked from commit 69f82e6)
  • Loading branch information
potiuk authored and Chris Fei committed Mar 5, 2021
1 parent 5ca4936 commit 6c8c44b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions scripts/ci/in_container/entrypoint_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6c8c44b

Please sign in to comment.