-
Notifications
You must be signed in to change notification settings - Fork 70
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 #472 from robotology/devel
Release iDynTree v0.11
- Loading branch information
Showing
318 changed files
with
12,752 additions
and
14,658 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
apt-get update | ||
|
||
# noninteractive tzdata ( https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive ) | ||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
# CI specific packages | ||
apt-get install -y clang valgrind | ||
|
||
# Dependencies | ||
apt-get install -y build-essential libboost-system-dev libboost-filesystem-dev libboost-thread-dev cmake coinor-libipopt-dev liborocos-kdl-dev libeigen3-dev libtinyxml-dev libace-dev libgsl0-dev libopencv-dev libode-dev git swig qtbase5-dev qtdeclarative5-dev qtmultimedia5-dev libqt5opengl5-dev libqcustomplot-dev libxml2-dev liburdfdom-dev | ||
|
||
# Lua | ||
apt-get install -y liblua5.1-dev lua5.1 | ||
|
||
# Python | ||
apt-get install -y python-dev | ||
|
||
# Octave | ||
apt-get install -y liboctave-dev | ||
|
||
|
||
|
||
|
||
|
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,8 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
DIR=$(dirname "$(readlink -f "$0")") | ||
|
||
sh $DIR/install_debian.sh | ||
sh $DIR/script.sh | ||
|
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,40 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
# Install source deps | ||
|
||
# Build YARP | ||
git clone https://github.com/robotology/yarp | ||
cd yarp | ||
git checkout devel | ||
mkdir build | ||
cd build | ||
cmake -G"${TRAVIS_CMAKE_GENERATOR}" -DCREATE_LIB_MATH:BOOL=ON -DCMAKE_BUILD_TYPE=${TRAVIS_BUILD_TYPE} .. | ||
cmake --build . --config ${TRAVIS_BUILD_TYPE} --target install | ||
cd ../.. | ||
|
||
# Build ICUB | ||
git clone https://github.com/robotology/icub-main | ||
cd icub-main | ||
git checkout devel | ||
mkdir build | ||
cd build | ||
cmake -G"${TRAVIS_CMAKE_GENERATOR}" -DCMAKE_BUILD_TYPE=${TRAVIS_BUILD_TYPE} .. | ||
cmake --build . --config ${TRAVIS_BUILD_TYPE} --target install | ||
cd ../.. | ||
|
||
# Build, test and install iDynTree | ||
cd $TRAVIS_BUILD_DIR | ||
mkdir build && cd build | ||
cmake -G"${TRAVIS_CMAKE_GENERATOR}" -DCMAKE_BUILD_TYPE=${TRAVIS_BUILD_TYPE} -DIDYNTREE_COMPILE_TESTS:BOOL=ON -DIDYNTREE_RUN_VALGRIND_TESTS:BOOL=${VALGRIND_TESTS} -DCODYCO_TRAVIS_CI:BOOL=ON -DIDYNTREE_USES_KDL:BOOL=${FULL_DEPS} -DIDYNTREE_USES_YARP:BOOL=${FULL_DEPS} -DIDYNTREE_USES_ICUB_MAIN:BOOL=${FULL_DEPS} -DIDYNTREE_USES_PYTHON:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_LUA:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_OCTAVE:BOOL=${COMPILE_BINDINGS} .. | ||
cmake --build . --config $TRAVIS_BUILD_TYPE | ||
ctest --output-on-failure --build-config ${TRAVIS_BUILD_TYPE} | ||
cmake --build . --config ${TRAVIS_BUILD_TYPE} --target install | ||
|
||
# Build iDynTree examples | ||
cd ../examples | ||
mkdir build | ||
cd build | ||
cmake -G"${TRAVIS_CMAKE_GENERATOR}" -DCMAKE_BUILD_TYPE=${TRAVIS_BUILD_TYPE} .. | ||
cmake --build . --config ${TRAVIS_BUILD_TYPE} | ||
|
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
Oops, something went wrong.