-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 5.1.0 contains a few improvements to the behaviour and usage of the libraries. This release also includes substantial improvements to the python bindings, including class bindings for the robot model and controller library. Additional fixes and improvements have been made throughout the framework. Refer to the CHANGELOG for more information.
- Loading branch information
Showing
81 changed files
with
2,752 additions
and
672 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
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 @@ | ||
5.1.0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM ghcr.io/epfl-lasa/control-libraries/development-dependencies:latest as dependencies | ||
ARG BRANCH=develop | ||
|
||
WORKDIR /source | ||
RUN git clone --depth 1 --branch "${BRANCH}" https://github.com/epfl-lasa/control-libraries | ||
RUN bash control-libraries/source/install.sh --auto --no-controllers --no-dynamical-systems --no-robot-model | ||
|
||
WORKDIR /tmp/protocol | ||
COPY ./ ./ | ||
|
||
WORKDIR /tmp/protocol/protobuf | ||
RUN make all | ||
|
||
|
||
FROM dependencies as build | ||
ARG BUILD_TESTING=ON | ||
|
||
WORKDIR /tmp/protocol/clproto_cpp/build | ||
RUN cmake -DBUILD_TESTING="${BUILD_TESTING}" .. \ | ||
&& make -j all | ||
|
||
|
||
FROM build as testing | ||
|
||
RUN CTEST_OUTPUT_ON_FAILURE=1 make test | ||
RUN rm -rf /tmp/protocol/ | ||
|
||
|
||
FROM build as install | ||
|
||
RUN make install | ||
RUN rm -rf /tmp/protocol/ |
Oops, something went wrong.