From 22397e64766762ed08b3c8f523ae2e189ab5b7c2 Mon Sep 17 00:00:00 2001 From: Marco Randazzo Date: Mon, 30 Dec 2024 15:44:48 +0100 Subject: [PATCH] updated action --- .github/workflows/conda-ci.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/conda-ci.yml b/.github/workflows/conda-ci.yml index 047eaf0..d0db43f 100644 --- a/.github/workflows/conda-ci.yml +++ b/.github/workflows/conda-ci.yml @@ -65,18 +65,17 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: - miniforge-variant: Mambaforge miniforge-version: latest - name: Dependencies shell: bash -l {0} run: | # Compilation related dependencies - mamba install cmake compilers make ninja pkg-config + conda install cmake compilers make ninja pkg-config # Actual dependencies - mamba install -c conda-forge -c robostack-staging ycm-cmake-modules eigen ace sqlite nlohmann_json + conda install -c conda-forge -c robostack-staging ycm-cmake-modules eigen ace sqlite nlohmann_json - name: Download YARP [Linux&macOS] @@ -213,19 +212,18 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: - miniforge-variant: Mambaforge miniforge-version: latest - name: Dependencies shell: bash -l {0} run: | # Compilation related dependencies - mamba install cmake compilers make ninja pkg-config + conda install cmake compilers make ninja pkg-config # Actual dependencies sudo apt update && sudo apt-get install -qq -y libc6-dbg - mamba install -c conda-forge -c robostack-staging ycm-cmake-modules valgrind ace sqlite + conda install -c conda-forge -c robostack-staging ycm-cmake-modules valgrind ace sqlite - name: Download YARP [Linux&macOS] if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')