From 9b42a185651912c295ea111ce3746e4d293e8be7 Mon Sep 17 00:00:00 2001 From: Eric Prestat Date: Tue, 15 Oct 2024 16:27:32 +0100 Subject: [PATCH] Fix Azure Pipelines CI --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9924535ac..1840cc684 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -21,29 +21,29 @@ resources: # For more details on service connection endpoint, see # https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints endpoint: jordiferrero # Azure DevOps service connection - ref: use_mamba + ref: use_miniforge strategy: matrix: Linux_Python38: vmImage: 'ubuntu-latest' PYTHON_VERSION: '3.8' - MAMBAFORGE_PATH: $(Agent.BuildDirectory)/mambaforge + MINIFORGE_PATH: $(Agent.BuildDirectory)/miniforge3 MacOS_Python38: vmImage: 'macOS-latest' PYTHON_VERSION: '3.8' - MAMBAFORGE_PATH: $(Agent.BuildDirectory)/mambaforge + MINIFORGE_PATH: $(Agent.BuildDirectory)/miniforge3 Windows_Python38: vmImage: 'windows-latest' PYTHON_VERSION: '3.8' - MAMBAFORGE_PATH: $(Agent.BuildDirectory)\mambaforge + MINIFORGE_PATH: $(Agent.BuildDirectory)\miniforge3 pool: vmImage: '$(vmImage)' steps: - template: azure_pipelines/clone_ci-scripts_repo.yml@templates -- template: azure_pipelines/install_mambaforge.yml@templates +- template: azure_pipelines/install_miniforge.yml@templates - template: azure_pipelines/activate_conda.yml@templates - template: azure_pipelines/setup_anaconda_packages.yml@templates