File tree Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Expand file tree Collapse file tree 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ commands:
3737 if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then
3838 our_upload_channel=test
3939 fi
40- echo "*** [DEBUG] EXECUTING BASH_ENV"
4140 echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
4241 install_build_tools_macos :
4342 description : " installs tools required to build torchaudio"
@@ -447,7 +446,7 @@ jobs:
447446 #
448447 - run :
449448 name : Setup
450- command : docker run -t --gpus all -e PYTHON_VERION -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
449+ command : docker run -t --gpus all -e PYTHON_VERSION -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
451450 # - save_cache:
452451 #
453452 # key: env-v3-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/setup_env.sh" }}-{{ checksum "third_party/CMakeLists.txt" }}-{{ checksum ".cachekey" }}
@@ -522,7 +521,10 @@ jobs:
522521 #
523522 - run :
524523 name : Setup
525- command : .circleci/unittest/windows/scripts/setup_env.sh
524+ command : |
525+ echo "*** PYTHON_VERSION is ${PYTHON_VERSION}"
526+ env
527+ .circleci/unittest/windows/scripts/setup_env.sh
526528 # - save_cache:
527529 #
528530 # key: env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/setup_env.sh" }}-{{ checksum ".cachekey" }}
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ commands:
3737 if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then
3838 our_upload_channel=test
3939 fi
40- echo "*** [DEBUG] EXECUTING BASH_ENV"
4140 echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
4241 install_build_tools_macos:
4342 description: "installs tools required to build torchaudio"
@@ -447,7 +446,7 @@ jobs:
447446 # {% endraw %}
448447 - run:
449448 name: Setup
450- command: docker run -t --gpus all -e PYTHON_VERION -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
449+ command: docker run -t --gpus all -e PYTHON_VERSION -v $PWD:$PWD -w $PWD "${image_name}" .circleci/unittest/linux/scripts/setup_env.sh
451450 # - save_cache:
452451 # {% raw %}
453452 # key: env-v3-linux-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/linux/scripts/setup_env.sh" }}-{{ checksum "third_party/CMakeLists.txt" }}-{{ checksum ".cachekey" }}
@@ -522,7 +521,10 @@ jobs:
522521 # {% endraw %}
523522 - run:
524523 name: Setup
525- command: .circleci/unittest/windows/scripts/setup_env.sh
524+ command: |
525+ echo "*** PYTHON_VERSION is ${PYTHON_VERSION}"
526+ env
527+ .circleci/unittest/windows/scripts/setup_env.sh
526528 # - save_cache:
527529 # {% raw %}
528530 # key: env-v1-windows-{{ arch }}-py<< parameters.python_version >>-{{ checksum ".circleci/unittest/windows/scripts/setup_env.sh" }}-{{ checksum ".cachekey" }}
Original file line number Diff line number Diff line change @@ -15,10 +15,7 @@ env_dir="${root_dir}/env"
1515cd " ${root_dir} "
1616
1717# 1. Install conda at ./conda
18- echo " BASH_ENV is ${BASH_ENV} "
19- . " ${BASH_ENV} "
20-
21- echo " Python version is ${PYTHON_VERSION} "
18+ echo " +++PYTHON_VERSION is ${PYTHON_VERSION} "
2219if [ ! -d " ${conda_dir} " ]; then
2320 printf " * Installing conda\n"
2421 export tmp_conda=" $( echo $conda_dir | tr ' /' ' \\' ) "
You can’t perform that action at this time.
0 commit comments