From 9bd78f0053104341e7d6a129be82a5706c40d719 Mon Sep 17 00:00:00 2001 From: Erik van Sebille Date: Mon, 27 Nov 2023 09:15:33 +0100 Subject: [PATCH] Using conda instead of mamba in CI --- .github/actions/install-parcels/action.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/actions/install-parcels/action.yml b/.github/actions/install-parcels/action.yml index 3d22f06ae..56a130fb5 100644 --- a/.github/actions/install-parcels/action.yml +++ b/.github/actions/install-parcels/action.yml @@ -18,14 +18,16 @@ runs: uses: al-cheb/configure-pagefile-action@v1.3 with: minimum-size: 8GB - - name: Install micromamba (${{ inputs.environment-file }}) - uses: mamba-org/setup-micromamba@v1 - with: - environment-file: ${{ inputs.environment-file }} - environment-name: ${{ inputs.environment-name }} - channels: conda-forge - cache-environment: true - cache-downloads: true + - name: Install miniconda + uses: conda-incubator/setup-miniconda@v2.3.0 + with: + miniconda-version: "latest" + activate-environment: ${{ inputs.environment-name }} + environment-file: ${{ inputs.environment-file }} + auto-activate-base: false + auto-update-conda: true + - run: conda info + shell: bash -el {0} - name: Install parcels run: pip install . shell: bash -el {0}