From 3de2f541464c08e948160d7b11d5c30099a4bc52 Mon Sep 17 00:00:00 2001 From: James McNally Date: Thu, 23 May 2024 12:47:34 +0100 Subject: [PATCH 1/2] fix: Add Installation to Conda setup in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b5552ee..018164bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: with: {toolchain: '${{matrix.rust}}'} - name: Install conda uses: conda-incubator/setup-miniconda@v2 - with: {auto-update-conda: false, activate-environment: testenv} + with: {auto-update-conda: false, activate-environment: testenv, miniconder-version: latest} - name: Install HDF5 (${{matrix.version}}${{matrix.mpi && '-' || ''}}${{matrix.mpi}}) run: | [ "${{matrix.mpi}}" != "" ] && MPICC_PKG=${{matrix.mpi}}-mpicc From 1cef202dae19355e0fe4ea6b425711989309c171 Mon Sep 17 00:00:00 2001 From: James McNally Date: Thu, 23 May 2024 12:51:05 +0100 Subject: [PATCH 2/2] fix: Typo in Conda Installation --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 018164bc..a52924e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: with: {toolchain: '${{matrix.rust}}'} - name: Install conda uses: conda-incubator/setup-miniconda@v2 - with: {auto-update-conda: false, activate-environment: testenv, miniconder-version: latest} + with: {auto-update-conda: false, activate-environment: testenv, miniconda-version: latest} - name: Install HDF5 (${{matrix.version}}${{matrix.mpi && '-' || ''}}${{matrix.mpi}}) run: | [ "${{matrix.mpi}}" != "" ] && MPICC_PKG=${{matrix.mpi}}-mpicc