-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Enable Bazel CI for drake_ros_examples (#252)
This will fail on main
- Loading branch information
1 parent
8b765af
commit edd1c3d
Showing
3 changed files
with
121 additions
and
5 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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
cat_without_comments() { | ||
sed -e 's|#.*||g;' "$(dirname $0)/$1" | ||
} | ||
|
||
apt_install () { | ||
apt-get -q install --no-install-recommends "$@" | ||
} | ||
|
||
apt_install $(cat_without_comments packages-ros2.txt) |
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# TODO(eric, shane): This is copied from Anzu's codebase. We should hoist the | ||
# tooling used to generate this, including the linting check. | ||
|
||
# APT-SOURCE: http://packages.ros.org/ros2/ubuntu | ||
libignition-cmake2-dev | ||
libignition-math6-dev | ||
python3-catkin-pkg-modules | ||
python3-rosdistro-modules | ||
|
||
# APT-SOURCE: http://*.ubuntu.com/ubuntu | ||
clang-format | ||
clang-tidy | ||
cmake | ||
cppcheck | ||
curl | ||
google-mock | ||
graphviz | ||
libassimp-dev | ||
libatomic1 | ||
libbenchmark-dev | ||
libboost-python1.74.0 | ||
libbullet-dev | ||
libconsole-bridge-dev | ||
libcurl4-openssl-dev | ||
libeigen3-dev | ||
libfreetype6 | ||
libfreetype6-dev | ||
libgl1-mesa-dev | ||
libglu1-mesa-dev | ||
libgtest-dev | ||
libopencv-dev | ||
liborocos-kdl-dev | ||
libpyside2-dev | ||
libqt5core5a | ||
libqt5gui5 | ||
libqt5opengl5 | ||
libqt5widgets5 | ||
libshiboken2-dev | ||
libspdlog-dev | ||
libsqlite3-dev | ||
libtinyxml-dev | ||
libtinyxml2-dev | ||
libx11-dev | ||
libxaw7-dev | ||
libxml2-utils | ||
libxrandr-dev | ||
libyaml-cpp-dev | ||
libyaml-dev | ||
libzstd-dev | ||
pkg-config | ||
# pybind11-dev # Ignored | ||
pydocstyle | ||
pyflakes3 | ||
pyqt5-dev | ||
python3-argcomplete | ||
python3-babeltrace | ||
python3-cairo | ||
python3-cryptography | ||
python3-dev | ||
python3-empy | ||
python3-flake8 | ||
python3-importlib-metadata | ||
python3-lark | ||
python3-lttng | ||
python3-lxml | ||
python3-matplotlib | ||
python3-minimal | ||
python3-mypy | ||
python3-netifaces | ||
python3-nose | ||
python3-numpy | ||
python3-opencv | ||
python3-packaging | ||
python3-pil | ||
python3-pkg-resources | ||
python3-psutil | ||
python3-pycodestyle | ||
python3-pydot | ||
python3-pykdl | ||
python3-pyqt5 | ||
python3-pyqt5.qtsvg | ||
python3-pyside2.qtsvg | ||
python3-pytest | ||
python3-setuptools | ||
python3-sip-dev | ||
python3-yaml | ||
qtbase5-dev | ||
shiboken2 | ||
tango-icon-theme | ||
uncrustify |