Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Cherry-pick for 0.15] Use python 3.9 conda environment for cmake circleci workflows (#7370) #7371

Merged
merged 7 commits into from
Mar 1, 2023
9 changes: 9 additions & 0 deletions .circleci/config.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .circleci/config.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -991,6 +991,10 @@ jobs:
command: |
set -ex
source packaging/windows/internal/vc_install_helper.sh
eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
conda activate base
conda create -yn python39 python=3.9
conda activate python39
packaging/build_cmake.sh

cmake_windows_gpu:
Expand All @@ -1008,6 +1012,11 @@ jobs:
set -ex
source packaging/windows/internal/vc_install_helper.sh
packaging/windows/internal/cuda_install.bat
eval "$('/C/tools/miniconda3/Scripts/conda.exe' 'shell.bash' 'hook')"
conda activate
conda update -y conda
conda create -yn python39 python=3.9
conda activate python39
packaging/build_cmake.sh

build_docs:
Expand Down