From 192fe2b1f1823912786334f2286958541f0f4b01 Mon Sep 17 00:00:00 2001 From: AngRodrigues Date: Tue, 17 Dec 2024 07:16:56 +1100 Subject: [PATCH] try libmamba solver --- .github/workflows/test_conda_build_install.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_conda_build_install.yml b/.github/workflows/test_conda_build_install.yml index 6c53d31e..f4aa1d44 100644 --- a/.github/workflows/test_conda_build_install.yml +++ b/.github/workflows/test_conda_build_install.yml @@ -28,10 +28,17 @@ jobs: - name: Install conda-build shell: bash -l {0} run: | + conda update conda -y + conda install -n base conda-libmamba-solver + conda config --set solver libmamba conda install conda-build -y + + - name: Build conda package + shell: bash -l {0} + run: | conda build -c conda-forge -c loop3d -c anaconda conda - - name: Create environment and install map2loop + - name: Install map2loop shell: bash -l {0} run: | conda install --use-local map2loop -y