From 8c2eb7d289e88b15ec648bb2ff6e57407389ec58 Mon Sep 17 00:00:00 2001 From: Francesco Biscani Date: Fri, 1 Sep 2023 00:06:07 +0200 Subject: [PATCH] Try with mamba. --- .github/workflows/gha_ci.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gha_ci.yml b/.github/workflows/gha_ci.yml index c63ffcca7..2025edb84 100644 --- a/.github/workflows/gha_ci.yml +++ b/.github/workflows/gha_ci.yml @@ -93,14 +93,13 @@ jobs: uses: microsoft/setup-msbuild@v1.1 - uses: conda-incubator/setup-miniconda@v2 with: - auto-update-conda: true - python-version: "3.10" - channels: conda-forge - channel-priority: strict + miniforge-variant: Mambaforge + miniforge-version: latest + use-mamba: true - name: Build shell: pwsh run: | - conda install -y cmake 'llvmdev=16.*' tbb-devel tbb boost-cpp xtensor xtensor-blas blas blas-devel fmt spdlog sleef zlib libzlib 'mppp>=0.27' + mamba install -y cmake 'llvmdev=16.*' tbb-devel tbb boost-cpp xtensor xtensor-blas blas blas-devel fmt spdlog sleef zlib libzlib 'mppp>=0.27' mkdir build cd build cmake ../ -G "Visual Studio 17 2022" -A x64 -DHEYOKA_BUILD_TESTS=yes -DHEYOKA_WITH_MPPP=yes -DHEYOKA_BUILD_TUTORIALS=ON -DHEYOKA_ENABLE_IPO=yes -DBoost_NO_BOOST_CMAKE=ON -DHEYOKA_WITH_SLEEF=yes -DMPPP_GMP_INCLUDE_DIR=C:\Miniconda\envs\test\Library\include -DMPPP_GMP_LIBRARY=C:\Miniconda\envs\test\Library\lib\mpir.lib