Skip to content

Commit

Permalink
drop TRAVIS_DISABLE_LIBSHOGUN_TESTS cmake switch
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Mar 19, 2018
1 parent 4a42cc9 commit 7de5eef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
@@ -1,3 +1,4 @@

This comment has been minimized.

Copy link
@vigsterkr

vigsterkr Mar 19, 2018

Member

que? :)

sudo: required
language: cpp
cache: ccache
Expand All @@ -12,7 +13,7 @@ notifications:
- "it's %{author}'s turn to pay the next round of drinks for the massacre he caused in %{repository}: %{build_url}"
env:
global:
- INTERFACE_TEST_OPTIONS="-DTRAVIS_DISABLE_UNIT_TESTS=ON -DTRAVIS_DISABLE_LIBSHOGUN_TESTS=ON -DTRAVIS_DISABLE_META_CPP=ON"
- INTERFACE_TEST_OPTIONS="-DTRAVIS_DISABLE_UNIT_TESTS=ON -DTRAVIS_DISABLE_META_CPP=ON"
matrix:
fast_finish: true
include:
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Expand Up @@ -534,7 +534,6 @@ ENDIF()

OPTION(ENABLE_TESTING "Enable testing" OFF)
OPTION(TRAVIS_DISABLE_UNIT_TESTS "Disable unit testing to speed up jobs on travis-ci" OFF)
OPTION(TRAVIS_DISABLE_LIBSHOGUN_TESTS "Disable libshogun tests to speed up jobs on travis-ci" OFF)
OPTION(TRAVIS_DISABLE_META_CPP "Disable cpp meta examples and integration testing to speed up jobs on travis-ci" OFF)
OPTION(DISABLE_META_INTEGRATION_TESTS "Disable meta integration testing to speed up build" OFF)

Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
@@ -1,4 +1,4 @@
IF (NOT TRAVIS_DISABLE_LIBSHOGUN_TESTS AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/undocumented/libshogun)
IF (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/undocumented/libshogun)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/undocumented/libshogun)
ENDIF()

Expand Down

0 comments on commit 7de5eef

Please sign in to comment.