Skip to content

Commit 61f2e3b

Browse files
authored
feat: enable simde in package.xml (#178)
* feat: add libsimde-dev into package.xml Signed-off-by: Daisuke Nishimatsu <[email protected]> * change key name Signed-off-by: Daisuke Nishimatsu <[email protected]> * remove comment Signed-off-by: Daisuke Nishimatsu <[email protected]> * add rosdistro condition for simde * update ros ci Signed-off-by: Daisuke Nishimatsu <[email protected]> * fix comment Signed-off-by: Daisuke Nishimatsu <[email protected]> * update package.xml Signed-off-by: Daisuke Nishimatsu <[email protected]> --------- Signed-off-by: Daisuke Nishimatsu <[email protected]>
1 parent eeb4888 commit 61f2e3b

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/ci-linux-ros.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ jobs:
66
strategy:
77
matrix:
88
env:
9-
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Debug}
10-
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release}
9+
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: OFF}
10+
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: OFF}
11+
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
12+
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
13+
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
14+
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
1115
env:
1216
CCACHE_DIR: /github/home/.ccache # Enable ccache
13-
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=OFF # Simde is not available yet
17+
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=${{ matrix.env.VECTORIZATION_SUPPORT }} # Simde is available since humble
1418
runs-on: ubuntu-latest
1519
steps:
1620
- uses: actions/checkout@v3

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<build_depend>git</build_depend>
1414
<build_depend>doxygen</build_depend>
1515
<depend>eigen</depend>
16-
<!-- There is no key for simde yet - deactivating for now. -->
17-
<!-- <depend>simde</depend> -->
16+
<!-- simde is only available for Ubuntu 22.04 -->
17+
<depend condition="$ROS_DISTRO == humble or $ROS_DISTRO == rolling">simde</depend>
1818
<depend condition="$ROS_PYTHON_VERSION == 2">python-numpy</depend>
1919
<depend condition="$ROS_PYTHON_VERSION == 3">python3-numpy</depend>
2020
<depend condition="$ROS_PYTHON_VERSION == 2">python-scipy</depend>

0 commit comments

Comments
 (0)