Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .github/workflows/conda-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,8 @@ jobs:
strategy:
matrix:
build_type: [Release]
ros_distro: [humble, iron, jazzy]
ros_distro: [humble, jazzy]
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-2019]
exclude:
# iron, jazzy non yet supported by conda:
- ros_distro: iron
- ros_distro: jazzy
# incompatible combinations:
- os: ubuntu-22.04
ros_distro: jazzy
- os: ubuntu-24.04
ros_distro: iron
fail-fast: false

steps:
Expand All @@ -85,7 +76,7 @@ jobs:
# Compilation related dependencies
conda install cmake compilers make ninja pkg-config
# Actual dependencies
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
conda install -c conda-forge -c robostack-${{ matrix.ros_distro }} ycm-cmake-modules eigen ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
- name: Download YARP [Linux&macOS]
Expand Down Expand Up @@ -222,7 +213,7 @@ jobs:
conda install cmake compilers make ninja pkg-config
# Actual dependencies
sudo apt-get install -qq -y libc6-dbg
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
conda install -c conda-forge -c robostack-${{ matrix.ros_distro }} ycm-cmake-modules eigen valgrind ace ros-${{ matrix.ros_distro }}-ros-base ros-${{ matrix.ros_distro }}-test-msgs
- name: Download YARP [Linux&macOS]
if: contains(matrix.os, 'macos') || contains(matrix.os, 'ubuntu')
Expand Down
Loading