Skip to content

Commit

Permalink
[ci] install mamba separately
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Oct 20, 2023
1 parent e82832c commit 10849e5
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ jobs:
with:
channels: conda-forge
python-version: ${{ matrix.python-version }}
mamba-version: "*"
#mamba-version: "*"

- name: Install mamba
run: conda install -y -c conda-forge mamba

- name: Install python dependencies
run: |
Expand All @@ -61,7 +64,7 @@ jobs:
conda list
conda info -a
- name: No-MPI case
- name: install mpi4py
if: ${{ matrix.MPI != 'no' }}
run: |
pip install --user mpi4py
Expand Down Expand Up @@ -144,7 +147,10 @@ jobs:
channels: conda-forge
python-version: ${{ matrix.python-version }}
environment-file: conda-requirements.txt
mamba-version: "*"
#mamba-version: "*"

- name: Install mamba
run: conda install -y -c conda-forge mamba

- name: Install dependencies
run: |
Expand Down

0 comments on commit 10849e5

Please sign in to comment.