Skip to content

Commit

Permalink
Merge pull request #943 from xylar/fix_azure
Browse files Browse the repository at this point in the history
Fix updating base env in Azure tests
  • Loading branch information
xylar authored Jan 16, 2023
2 parents 02c5273 + 030e347 commit 9f25813
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:
eval "$(conda shell.bash hook)"
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install --yes "conda!=22.11.0" conda-build mamba boa
conda update --yes --all
conda install --yes mamba
# workaround based on recent failures
rm /usr/share/miniconda/pkgs/cache/*.json
mamba install --yes conda-build boa
displayName: Update conda base environment
- bash: |
Expand Down Expand Up @@ -158,7 +162,11 @@ jobs:
eval "$(conda shell.bash hook)"
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install --yes python=$PYTHON_VERSION "conda!=22.11.0" conda-build mamba boa
conda update --yes --all
conda install --yes mamba
# workaround based on recent failures
rm /usr/share/miniconda/pkgs/cache/*.json
mamba install --yes conda-build boa
displayName: Update conda base environment
- bash: |
Expand Down Expand Up @@ -213,7 +221,9 @@ jobs:
eval "$(conda shell.bash hook)"
conda config --add channels conda-forge
conda config --set channel_priority strict
conda install --yes "conda!=22.11.0" conda-build mamba boa
conda update --yes --all
conda install --yes mamba
mamba install --yes conda-build boa
displayName: Update conda base environment
- bash: |
Expand Down

0 comments on commit 9f25813

Please sign in to comment.