Skip to content

Commit

Permalink
Merge pull request #652 from dartsim/packaging/components
Browse files Browse the repository at this point in the history
Reorganizing DART library composition
  • Loading branch information
jslee02 committed Apr 16, 2016
2 parents 8c895a2 + 9499a5a commit 830b321
Show file tree
Hide file tree
Showing 142 changed files with 1,305 additions and 969 deletions.
17 changes: 5 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,10 @@ compiler:
- clang

env:
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug COVERALLS=OFF
- BUILD_CORE_ONLY=OFF BUILD_TYPE=Release COVERALLS=OFF
- BUILD_CORE_ONLY=ON BUILD_TYPE=Debug COVERALLS=OFF
- BUILD_CORE_ONLY=ON BUILD_TYPE=Release COVERALLS=OFF
- BUILD_TYPE=Debug COVERALLS=ON COVERALLS_REPO_TOKEN=FKh1HgwfV5uzNrYxIT6ZWjcFqybYZSUym
- BUILD_TYPE=Release COVERALLS=OFF

matrix:
include:
- os: linux
compiler: gcc
env: BUILD_CORE_ONLY=OFF BUILD_TYPE=Debug COVERALLS=ON COVERALLS_REPO_TOKEN=FKh1HgwfV5uzNrYxIT6ZWjcFqybYZSUym
exclude:
- os: osx
compiler: gcc
Expand All @@ -33,10 +27,9 @@ install:

script:
- mkdir build && cd build
- cmake -DBUILD_CORE_ONLY=$BUILD_CORE_ONLY -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDART_COVERALLS=$COVERALLS ..
- make all
- if [ $BUILD_CORE_ONLY = OFF ]; then make tutorials examples tests test; fi
- if [ $COVERALLS = ON ]; then make coveralls; fi
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDART_COVERALLS=$COVERALLS ..
- make -j4 all tutorials examples tests test
- if [ $COVERALLS = ON ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j4 coveralls; fi

after_failure:
- cat Testing/Temporary/LastTest.log
Expand Down
Loading

0 comments on commit 830b321

Please sign in to comment.