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:
37
37
if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then
38
38
our_upload_channel=test
39
39
fi
40
- echo "*** [DEBUG] EXECUTING BASH_ENV"
41
40
echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
42
41
install_build_tools_macos :
43
42
description : " installs tools required to build torchaudio"
@@ -447,7 +446,7 @@ jobs:
447
446
#
448
447
- run :
449
448
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
451
450
# - save_cache:
452
451
#
453
452
# 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:
522
521
#
523
522
- run :
524
523
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
526
528
# - save_cache:
527
529
#
528
530
# 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:
37
37
if [[ -n "${CIRCLE_TAG}" ]] || [[ ${CIRCLE_BRANCH} =~ release/* ]]; then
38
38
our_upload_channel=test
39
39
fi
40
- echo "*** [DEBUG] EXECUTING BASH_ENV"
41
40
echo "export UPLOAD_CHANNEL=${our_upload_channel}" >> ${BASH_ENV}
42
41
install_build_tools_macos:
43
42
description: "installs tools required to build torchaudio"
@@ -447,7 +446,7 @@ jobs:
447
446
# {% endraw %}
448
447
- run:
449
448
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
451
450
# - save_cache:
452
451
# {% raw %}
453
452
# 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:
522
521
# {% endraw %}
523
522
- run:
524
523
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
526
528
# - save_cache:
527
529
# {% raw %}
528
530
# 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"
15
15
cd " ${root_dir} "
16
16
17
17
# 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} "
22
19
if [ ! -d " ${conda_dir} " ]; then
23
20
printf " * Installing conda\n"
24
21
export tmp_conda=" $( echo $conda_dir | tr ' /' ' \\' ) "
You can’t perform that action at this time.
0 commit comments