Skip to content

Commit e4ba8fa

Browse files
authored
Drop deprecated mambaforge installer and use conda instead of mamba
1 parent 7444d8b commit e4ba8fa

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/conda-ci.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,17 @@ jobs:
7575
steps:
7676
- uses: actions/checkout@v3
7777

78-
- uses: conda-incubator/setup-miniconda@v2
78+
- uses: conda-incubator/setup-miniconda@v3
7979
with:
80-
miniforge-variant: Mambaforge
8180
miniforge-version: latest
8281

8382
- name: Dependencies
8483
shell: bash -l {0}
8584
run: |
8685
# Compilation related dependencies
87-
mamba install cmake compilers make ninja pkg-config
86+
conda install cmake compilers make ninja pkg-config
8887
# Actual dependencies
89-
mamba install -c conda-forge -c robostack-staging ycm-cmake-modules eigen ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
88+
conda install -c conda-forge -c robostack-staging ycm-cmake-modules eigen ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
9089
9190
9291
- name: Download YARP [Linux&macOS]
@@ -212,19 +211,18 @@ jobs:
212211
steps:
213212
- uses: actions/checkout@v3
214213

215-
- uses: conda-incubator/setup-miniconda@v2
214+
- uses: conda-incubator/setup-miniconda@v3
216215
with:
217-
miniforge-variant: Mambaforge
218216
miniforge-version: latest
219217

220218
- name: Dependencies
221219
shell: bash -l {0}
222220
run: |
223221
# Compilation related dependencies
224-
mamba install cmake compilers make ninja pkg-config
222+
conda install cmake compilers make ninja pkg-config
225223
# Actual dependencies
226224
sudo apt-get install -qq -y libc6-dbg
227-
mamba install -c conda-forge -c robostack-staging ycm-cmake-modules eigen valgrind ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
225+
conda install -c conda-forge -c robostack-staging ycm-cmake-modules eigen valgrind ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
228226
229227
- name: Download YARP [Linux&macOS]
230228
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')

0 commit comments

Comments
 (0)