Skip to content

Commit

Permalink
Configure kin-dyn repo without additional options
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBowman committed Mar 17, 2018
1 parent cd8e736 commit 6f4618b
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,23 @@ compiler:
- clang

before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libace-dev
#- sudo apt-get -qq update
- '[[ "$TRAVIS_EVENT_TYPE" = cron ]] && export YARP_CHECKOUT=devel || export YARP_CHECKOUT=master'

install:
# Clone and build YARP
- cd
- git clone --depth=1 --branch=$YARP_CHECKOUT https://github.com/robotology/yarp
- mkdir -p yarp/build && cd "$_"
- cmake ..
- sudo make -j2 install
- cmake .. -DSKIP_ACE=ON
- make -j$(nproc)
- sudo make install

# Clone and configure ROBOTICSLAB_KINEMATICS_DYNAMICS
- cd
- git clone https://github.com/roboticslab-uc3m/kinematics-dynamics
- mkdir -p kinematics-dynamics/build && cd "$_"
- cmake .. -DENABLE_TrajectoryLib:BOOL=OFF -DENABLE_KdlVectorConverterLib:BOOL=OFF -DENABLE_KinematicRepresentationLib:BOOL=OFF -DENABLE_YarpTinyMathLib:BOOL=OFF -DENABLE_BasicCartesianControl:BOOL=OFF -DENABLE_CartesianControlServer:BOOL=OFF -DENABLE_CartesianControlClient:BOOL=OFF -DENABLE_KdlSolver:BOOL=OFF -DENABLE_AsibotSolver:BOOL=OFF -DENABLE_BasicTwoLimbCartesianControl:BOOL=OFF -DENABLE_TwoLimbCartesianControlServer:BOOL=OFF -DENABLE_transCoordsUsingJoints:BOOL=OFF -DENABLE_tests:BOOL=OFF
- export ROBOTICSLAB_KINEMATICS_DYNAMICS_DIR=$PWD
- cmake ..

before_script:
- cd $TRAVIS_BUILD_DIR
Expand All @@ -34,3 +33,6 @@ before_script:

script:
- make

after_success:
- sudo make install

0 comments on commit 6f4618b

Please sign in to comment.