We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3926acb commit 8248659Copy full SHA for 8248659
1 file changed
.azure-pipelines/azure-pipelines.yml
@@ -11,6 +11,14 @@ jobs:
11
pool:
12
vmImage: macOS-10.14
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
22
- template: templates/setup-script.yml
23
- template: templates/nb-docs.yml
24
@@ -26,5 +34,7 @@ jobs:
26
34
27
35
vmImage: ubuntu-16.04
28
36
37
38
29
39
30
40
0 commit comments