We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a72b06 commit 07ec7cbCopy full SHA for 07ec7cb
.azure/templates/install.yml
@@ -10,6 +10,17 @@ parameters:
10
default: scipy
11
12
steps:
13
+ - bash: |
14
+ # laggards on Azure/GHA team dropped miniconda on macos images
15
+ # https://github.com/actions/runner-images/issues/9262
16
+ mkdir -p ~/miniconda3
17
+ curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o ~/miniconda3/miniconda.sh
18
+ bash ~/miniconda3/miniconda.sh -b -u -p ~/miniconda3
19
+ rm ~/miniconda3/miniconda.sh
20
+ echo "##vso[task.setvariable variable=CONDA;]${HOME}/miniconda3"
21
+ displayName: Install miniconda
22
+ condition: startsWith(variables.image, 'macos')
23
+
24
- bash: |
25
echo "# # vso [task.prependpath]$CONDA/bin"
26
echo "##vso[task.prependpath]$CONDA/bin"
0 commit comments