Skip to content

Commit

Permalink
Using conda instead of mamba in conda-forge-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Dafarra authored Nov 5, 2024
1 parent d036cb6 commit 1712fa6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/conda-forge-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
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 glew glfw eigen glm openxr-sdk yarp
conda install glew glfw eigen glm openxr-sdk yarp
- name: OpenGL [Linux]
if: contains(matrix.os, 'ubuntu')
Expand All @@ -43,7 +43,7 @@ jobs:
# OpenGL is not found on Ubuntu when using conda. Related issue https://github.com/robotology/robotology-superbuild/issues/929
# See https://github.com/robotology/robotology-superbuild/issues/477
# See https://github.com/robotology/robotology-superbuild/pull/1606
mamba install expat freeglut libselinux-cos7-x86_64 xorg-libxau libxcb xorg-libxdamage xorg-libxext xorg-libxfixes xorg-libxxf86vm xorg-libxrandr mesa-libgl-cos7-x86_64 mesa-libgl-devel-cos7-x86_64
conda install expat freeglut libselinux-cos7-x86_64 xorg-libxau libxcb xorg-libxdamage xorg-libxext xorg-libxfixes xorg-libxxf86vm xorg-libxrandr mesa-libgl-cos7-x86_64 mesa-libgl-devel-cos7-x86_64
- name: Configure [Linux]
if: contains(matrix.os, 'ubuntu')
Expand Down

0 comments on commit 1712fa6

Please sign in to comment.