We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a738223 commit 3ee85e1Copy full SHA for 3ee85e1
ci/azure/windows.yml
@@ -17,14 +17,10 @@ jobs:
17
CONDA_PY: "37"
18
19
steps:
20
- - task: CondaEnvironment@1
21
- inputs:
22
- updateConda: no
23
- packageSpecs: ''
24
-
25
- - script: |
26
- ci\\incremental\\setup_conda_environment.cmd
27
- displayName: 'Before Install'
+ - powershell: Write-Host "##vso[task.prependpath]$env:CONDA\Scripts"
+ displayName: Add conda to PATH
+ - script: conda env create --file ci\\deps\\azure-windows-$(CONDA_PY).yaml
+ displayName: Create anaconda environment
28
- script: |
29
call activate pandas-dev
30
ci\\incremental\\build.cmd
ci/incremental/setup_conda_environment.cmd
0 commit comments