Skip to content

Commit 99b7bd7

Browse files
Update OctoMap to latest release (1.10.0)
Recent CI changes resulted in build errors with OctoMap 1.8. Update to the most recent release, and include a work-around for an install problem (OctoMap/octomap#445) and for OctoMap requesting an ancient and unsupported version of CMake. Fixes: #656
1 parent 355919e commit 99b7bd7

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

ci/install_linux.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ sudo apt-get -qq --yes --force-yes install libccd-dev
77
# Octomap
88
git clone https://github.com/OctoMap/octomap
99
cd octomap
10-
git checkout tags/v1.8.0
10+
git checkout tags/v1.10.0
1111
mkdir build
1212
cd build
13-
cmake ..
13+
cmake \
14+
-DCMAKE_BUILD_TYPE=Release \
15+
-DCMAKE_POLICY_VERSION_MINIMUM=3.10 \
16+
..
1417
make
1518
sudo make install

ci/install_osx.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ brew install libccd
88
# Octomap
99
git clone https://github.com/OctoMap/octomap
1010
cd octomap
11-
git checkout tags/v1.8.0
11+
git checkout tags/v1.10.0
1212
mkdir build
1313
cd build
14-
cmake ..
14+
cmake \
15+
-DCMAKE_BUILD_TYPE=Release \
16+
-DCMAKE_POLICY_VERSION_MINIMUM=3.10 \
17+
..
1518
make
1619
sudo make install

0 commit comments

Comments
 (0)