Skip to content

Commit

Permalink
[travis] Disable testing of Octave bindings in master
Browse files Browse the repository at this point in the history
For some reason, Octave tests started failing in master. 
Given that we will soon merge `devel` in `master` and in the `devel` the bindings for Octave changed completely (see #305),  I think for the time being we can just disable testing the Octave bindings in master.
  • Loading branch information
traversaro committed Jun 7, 2017
1 parent 850c0c6 commit be96d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ before_script:
- mkdir build
- cd build
# Xcode has support for multiple configurations. Passing -DCMAKE_BUILD_TYPE is ignored
- 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_PYTHON:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_LUA:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_OCTAVE:BOOL=${COMPILE_BINDINGS} ..
- 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_PYTHON:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_LUA:BOOL=${COMPILE_BINDINGS} -DIDYNTREE_USES_OCTAVE:BOOL=OFF ..

script:
- cmake --build . --config ${TRAVIS_BUILD_TYPE}
Expand Down

0 comments on commit be96d04

Please sign in to comment.