-
Notifications
You must be signed in to change notification settings - Fork 286
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[build] Remove support for CMake < 3.22.1 and Eigen < 3.4.0
(cherry picked from commit 7a13a30)
- Loading branch information
Showing
18 changed files
with
98 additions
and
321 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,47 @@ jobs: | |
- name: Install Dependencies with cache | ||
uses: awalsh128/[email protected] | ||
with: | ||
packages: build-essential libboost-all-dev clang clang-format-12 cmake curl doxygen gcovr git lcov lsb-release pkg-config software-properties-common valgrind libassimp-dev libccd-dev libeigen3-dev libfcl-dev libfmt-dev coinor-libipopt-dev freeglut3-dev libxi-dev libxmu-dev libbullet-dev libtinyxml2-dev liburdfdom-dev liburdfdom-headers-dev libopenscenegraph-dev libnlopt-cxx-dev liboctomap-dev libode-dev libspdlog-dev ocl-icd-opencl-dev libpython3-dev pybind11-dev python3 python3-dev python3-distutils python3-numpy python3-pip python3-setuptools | ||
packages: | | ||
build-essential | ||
libboost-all-dev | ||
clang | ||
clang-format-12 | ||
cmake | ||
curl | ||
doxygen | ||
gcovr | ||
git | ||
lcov | ||
lsb-release | ||
pkg-config | ||
software-properties-common | ||
valgrind | ||
libassimp-dev | ||
libeigen3-dev | ||
libfcl-dev | ||
libfmt-dev | ||
coinor-libipopt-dev | ||
freeglut3-dev | ||
libxi-dev | ||
libxmu-dev | ||
libbullet-dev | ||
libtinyxml2-dev | ||
liburdfdom-dev | ||
liburdfdom-headers-dev | ||
libopenscenegraph-dev | ||
libnlopt-cxx-dev | ||
liboctomap-dev | ||
libode-dev | ||
libspdlog-dev | ||
ocl-icd-opencl-dev | ||
libpython3-dev | ||
pybind11-dev | ||
python3 | ||
python3-dev | ||
python3-distutils | ||
python3-numpy | ||
python3-pip | ||
python3-setuptools | ||
version: 1.1 | ||
|
||
- name: Install Python dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ brew 'eigen' | |
brew 'fcl' | ||
brew 'fmt' | ||
brew 'ipopt' | ||
brew 'libccd' | ||
brew 'nlopt' | ||
brew 'octomap' | ||
brew 'ode' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,8 @@ | |
|
||
#include <fstream> | ||
|
||
#include <cassert> | ||
|
||
namespace dart { | ||
namespace common { | ||
namespace detail { | ||
|
Oops, something went wrong.