-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
54 additions
and
14 deletions.
There are no files selected for viewing
Submodule .travis
updated
12 files
+10 −10 | README.md | |
+4 −1 | after_success | |
+51 −0 | appveyor.yml.in | |
+9 −1 | before_install | |
+20 −11 | build | |
+14 −1 | common.sh | |
+1 −1 | dependencies/catkin | |
+3 −5 | dependencies/eigen-3.2 | |
+26 −0 | dependencies/eigen-3.2.ps1 | |
+38 −0 | dependencies/ipopt | |
+2 −2 | dependencies/nag | |
+126 −0 | functions.ps1 |
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 |
---|---|---|
@@ -1,10 +1,8 @@ | ||
language: cpp | ||
compiler: | ||
- gcc | ||
- clang | ||
env: | ||
global: | ||
- APT_DEPENDENCIES="doxygen libltdl-dev libboost-all-dev liblog4cxx10-dev libcminpack-dev" | ||
- APT_DEPENDENCIES="cmake cmake-data doxygen libltdl-dev libboost-all-dev liblog4cxx10-dev libcminpack-dev" | ||
- HOMEBREW_DEPENDENCIES="doxygen log4cxx cminpack" | ||
- GIT_DEPENDENCIES="roboptim/roboptim-core" | ||
- DEBSIGN_KEYID=5AE5CD75 | ||
- PPA_URI="roboptim/ppa" | ||
|
@@ -19,18 +17,60 @@ notifications: | |
rooms: | ||
secure: LJbgx2sjAmTUu+AV8N/PSQHFQ8E1OnHAB2oYFv1XwN2hujtswNwE9k16etaEBRZ0IP1z7mTWrabaztDPC5efEaGpi4TZLMr5P9n/ABWRvJi+tVMXG7fusxTNzOaqcr31g2VQBXJ2nMZWxawP4xzTp+sSVcVsHm5xt4UjLyVQ6+A= | ||
email: [email protected] | ||
before_install: | ||
- ./.travis/dependencies/eigen-3.2 | ||
- ./.travis/run before_install | ||
script: | ||
- export LD_LIBRARY_PATH="/tmp/_travis/install/lib/roboptim-core/":$LD_LIBRARY_PATH | ||
- ./.travis/run build | ||
after_success: ./.travis/run after_success | ||
after_failure: ./.travis/run after_failure | ||
branches: | ||
only: | ||
- master | ||
- dev | ||
- travis | ||
- debian | ||
script: | ||
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then export LD_LIBRARY_PATH=`pkg-config --variable=plugindir roboptim-core`:$LD_LIBRARY_PATH; fi | ||
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then export DYLD_LIBRARY_PATH=`pkg-config --variable=plugindir roboptim-core`:$DYLD_LIBRARY_PATH; fi | ||
- if [ "${ENABLE_CXX11}" == "1" ]; then export CMAKE_ADDITIONAL_OPTIONS="-DUSE_CXX11:BOOL=ON -DROBOPTIM_PRECOMPILE_DENSE_SPARSE:BOOL=ON ${CMAKE_ADDITIONAL_OPTIONS}"; fi | ||
- if [ "${COVERITY_SCAN_BRANCH}" != "1" ]; then ./.travis/run build; fi | ||
after_success: | ||
- ./.travis/run after_success | ||
- codecov --gcov-root=/tmp/_ci/build | ||
after_failure: ./.travis/run after_failure | ||
before_install: | ||
- pip install --user codecov | ||
- ./.travis/dependencies/eigen-3.2 | ||
- ./.travis/run before_install | ||
|
||
matrix: | ||
allow_failures: | ||
- compiler: clang | ||
- os: linux | ||
compiler: clang | ||
- os: osx | ||
compiler: gcc | ||
- env: COVERITY_SCAN_BRANCH=1 | ||
include: | ||
- os: linux | ||
dist: trusty | ||
compiler: gcc | ||
- os: linux | ||
dist: trusty | ||
compiler: clang | ||
env: ENABLE_CXX11=1 | ||
- os: linux | ||
dist: precise | ||
compiler: gcc | ||
env: MASTER_PPA="george-edison55/precise-backports" | ||
- os: linux | ||
dist: precise | ||
compiler: clang | ||
env: MASTER_PPA="george-edison55/precise-backports" | ||
- os: osx | ||
compiler: clang | ||
- os: osx | ||
compiler: gcc | ||
|
||
addons: | ||
coverity_scan: | ||
project: | ||
name: "roboptim/roboptim-core-plugin-cminpack" | ||
description: "Build submitted via Travis CI" | ||
notification_email: [email protected] | ||
build_command_prepend: ". .travis/common.sh && mkdir coverity && cd coverity && cmake .." | ||
build_command: "make" | ||
branch_pattern: coverity_scan |