diff --git a/.circleci/config.yml b/.circleci/config.yml index 535839ce08a31..db46b42bf2d25 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -659,7 +659,7 @@ binary_run_in_docker: &binary_run_in_docker command: | # This step only runs on circleci linux machine executors that themselves # need to start docker images - script="/home/circleci/project/pytorch/.circleci/scripts/binary_install_miniconda.sh" + script="/home/circleci/project/pytorch/.circleci/scripts/binary_run_in_docker.sh" cat "$script" source "$script" # binary linux build defaults @@ -830,6 +830,11 @@ smoke_linux_test: &smoke_linux_test <<: *setup_linux_system_environment - run: <<: *setup_ci_environment + # This checkout is only needed to access + # .circleci/scripts/binary_populate_env.sh, which can't be inlined because + # it blows up the yaml size. + - run: + <<: *binary_checkout - run: <<: *binary_populate_env - run: @@ -840,7 +845,6 @@ smoke_linux_test: &smoke_linux_test cat >/home/circleci/project/ci_test_script.sh </home/circleci/project/ci_test_script.sh <