From 6b6ad77501a61faa66e3a4a56254cac9a2245a15 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Fri, 21 Jun 2024 13:34:51 +0200 Subject: [PATCH] Switch from mamba to conda in CI --- .github/workflows/cxx-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cxx-ci.yml b/.github/workflows/cxx-ci.yml index 569a4c3..1fdd7c9 100644 --- a/.github/workflows/cxx-ci.yml +++ b/.github/workflows/cxx-ci.yml @@ -23,7 +23,7 @@ jobs: - uses: conda-incubator/setup-miniconda@v2 with: - miniforge-variant: Mambaforge + miniforge-variant: Miniforge3 miniforge-version: latest channels: conda-forge @@ -34,12 +34,12 @@ jobs: conda config --remove channels defaults # Build and test dependencies (ROS packages to test that resouces are find correctly by ROS/ROS2) # ros-noetic-catkin is required otherwised ROS_PACKAGE_PATH is not defined and rospack list does not return anything - mamba install -c conda-forge -c robostack -c robostack-humble cmake compilers make ninja pkg-config python ros-noetic-rospack ros-noetic-catkin ros-humble-ros2pkg + conda install -c conda-forge -c robostack -c robostack-humble cmake compilers make ninja pkg-config python ros-noetic-rospack ros-noetic-catkin ros-humble-ros2pkg - name: Print used environment [Conda] shell: bash -l {0} run: | - mamba list + conda list env - name: Configure [Conda/Linux&macOS]