-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from ci-group/development
Update to release 2.0
- Loading branch information
Showing
248 changed files
with
106,474 additions
and
2,523 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
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,3 @@ | ||
[submodule "thirdparty/limbo"] | ||
path = thirdparty/limbo | ||
url = https://github.com/resibots/limbo.git |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,19 @@ | ||
FROM ubuntu:bionic | ||
FROM cigroup/gazebo:gazebo10-revolve | ||
|
||
# Dependencies | ||
RUN apt-get update | ||
RUN apt-get install -y build-essential \ | ||
libboost-all-dev \ | ||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
build-essential \ | ||
cmake \ | ||
curl \ | ||
cppcheck \ | ||
doxygen \ | ||
git \ | ||
gsl-bin libgsl0-dev \ | ||
mercurial \ | ||
pkg-config \ | ||
python \ | ||
libgsl0-dev \ | ||
python3-pip \ | ||
libyaml-cpp-dev \ | ||
xsltproc \ | ||
libcairo2-dev | ||
RUN apt-get install -y libgazebo9-dev gazebo9 | ||
RUN apt-get clean && rm -rf /var/lib/apt/lists/* | ||
libcairo2-dev \ | ||
graphviz \ | ||
libeigen3-dev \ | ||
libnlopt-dev && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
ADD . /revolve | ||
RUN /revolve/docker/build_revolve.sh |
Oops, something went wrong.