Skip to content

Commit

Permalink
feat: enable simde in package.xml (#178)
Browse files Browse the repository at this point in the history
* feat: add libsimde-dev into package.xml

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* change key name

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* remove comment

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* add rosdistro condition for simde

* update ros ci

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* fix comment

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

* update package.xml

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>

---------

Signed-off-by: Daisuke Nishimatsu <border_goldenmarket@yahoo.co.jp>
  • Loading branch information
wep21 committed Feb 21, 2023
1 parent eeb4888 commit 61f2e3b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci-linux-ros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Debug}
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release}
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: OFF}
- {ROS_DISTRO: noetic, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: OFF}
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
- {ROS_DISTRO: humble, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Debug, VECTORIZATION_SUPPORT: ON}
- {ROS_DISTRO: rolling, CMAKE_BUILD_TYPE: Release, VECTORIZATION_SUPPORT: ON}
env:
CCACHE_DIR: /github/home/.ccache # Enable ccache
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=OFF # Simde is not available yet
CMAKE_ARGS: -DBUILD_WITH_VECTORIZATION_SUPPORT=${{ matrix.env.VECTORIZATION_SUPPORT }} # Simde is available since humble
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<build_depend>git</build_depend>
<build_depend>doxygen</build_depend>
<depend>eigen</depend>
<!-- There is no key for simde yet - deactivating for now. -->
<!-- <depend>simde</depend> -->
<!-- simde is only available for Ubuntu 22.04 -->
<depend condition="$ROS_DISTRO == humble or $ROS_DISTRO == rolling">simde</depend>
<depend condition="$ROS_PYTHON_VERSION == 2">python-numpy</depend>
<depend condition="$ROS_PYTHON_VERSION == 3">python3-numpy</depend>
<depend condition="$ROS_PYTHON_VERSION == 2">python-scipy</depend>
Expand Down

0 comments on commit 61f2e3b

Please sign in to comment.