From 8e0f0f303c6046aa6bb694cd5fff1b1f3f5072cd Mon Sep 17 00:00:00 2001 From: jaimergp Date: Thu, 3 Oct 2024 21:15:03 +0200 Subject: [PATCH] Use D: in Windows --- .azure-pipelines/azure-pipelines-win.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index 916e1ea6a4aaf..f275d948e39eb 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -20,9 +20,9 @@ jobs: path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" urllib.request.urlretrieve(url, path) - script: | - start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge + start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=D:\Miniforge displayName: Install Miniforge - - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" + - powershell: Write-Host "##vso[task.prependpath]D:\Miniforge\Scripts" displayName: Add conda to PATH - script: | @@ -30,7 +30,7 @@ jobs: displayName: Build recipes env: CI: azure - CONDA_BLD_PATH: C:\bld + CONDA_BLD_PATH: D:\bld - - publish: C:\\bld\\win-64\\ + - publish: D:\\bld\\win-64\\ artifact: conda_pkgs_win