File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 11
11
pool :
12
12
vmImage : macOS-10.14
13
13
steps :
14
+ # Add conda to bash
15
+ - bash : echo "##vso[task.prependpath]$CONDA/bin"
16
+ displayName : Add conda to PATH
17
+
18
+ # On Hosted macOS, the agent user doesn't have ownership of Miniconda's installation directory/
19
+ # We need to take ownership if we want to update conda or install packages globally
20
+ - bash : sudo chown -R $USER $CONDA
21
+ displayName : Take ownership of conda installation
14
22
- template : templates/setup-script.yml
15
23
- template : templates/nb-docs.yml
16
24
26
34
pool :
27
35
vmImage : ubuntu-16.04
28
36
steps :
37
+ - bash : echo "##vso[task.prependpath]$CONDA/bin"
38
+ displayName : Add conda to PATH
29
39
- template : templates/setup-script.yml
30
40
- template : templates/nb-docs.yml
You can’t perform that action at this time.
0 commit comments