From 1ae46c36ba38083ce076af893a86e949ef07e9c9 Mon Sep 17 00:00:00 2001
From: mnaveau <maximilien.naveau@laas.fr>
Date: Fri, 20 May 2016 14:50:01 +0200
Subject: [PATCH] add a file to specify a specific behavior in case of failure,
 like running tests with gdb or valgrind Specify the build to be RELEASE

---
 .travis.yml                         |  3 +--
 travis_custom/custom_after_failure  | 14 ++++++++++++++
 travis_custom/custom_before_install |  1 +
 3 files changed, 16 insertions(+), 2 deletions(-)
 create mode 100755 travis_custom/custom_after_failure

diff --git a/.travis.yml b/.travis.yml
index 481e101b..453a4dcf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,11 +22,10 @@ before_install: ./travis_custom/custom_before_install
 install:
   - pip install --user coveralls
 script:
-  - export CMAKE_ADDITIONAL_OPTIONS="-DCMAKE_BUILD_TYPE=${BUILDTYPE}"
   - sudo free -m -t
   - travis_wait ./.travis/run ../travis_custom/custom_build
 script: ./.travis/run ../travis_custom/custom_build
-after_failure: ./.travis/run after_failure
+after_failure: ./.travis/run ../travis_custom/custom_after_failure
 after_success:
   - ./.travis/run after_success
   - export PYTHONPATH=/tmp/_ci/install/lib/python2.7/site-packages
diff --git a/travis_custom/custom_after_failure b/travis_custom/custom_after_failure
new file mode 100755
index 00000000..c27f8e8c
--- /dev/null
+++ b/travis_custom/custom_after_failure
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+./.travis/run after_failure
diff --git a/travis_custom/custom_before_install b/travis_custom/custom_before_install
index 7cebc084..d6db0d2b 100755
--- a/travis_custom/custom_before_install
+++ b/travis_custom/custom_before_install
@@ -35,6 +35,7 @@ export GIT_DEPENDENCIES=$GIT_DEPENDENCIES" https://github.com/humanoid-path-plan
 export CMAKE_ADDITIONAL_OPTIONS=$CMAKE_ADDITIONAL_OPTIONS" -DLINEAR_ALGEBRA_LIB=eigen"
 export CMAKE_ADDITIONAL_OPTIONS=$CMAKE_ADDITIONAL_OPTIONS" -DBUILD_UNIT_TESTS=OFF"
 export CMAKE_ADDITIONAL_OPTIONS=$CMAKE_ADDITIONAL_OPTIONS" -DBUILD_PYTHON_INTERFACE=OFF"
+export CMAKE_ADDITIONAL_OPTIONS=$CMAKE_ADDITIONAL_OPTIONS" -DCMAKE_BUILD_TYPE=RELEASE"
 
 export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/opt/openrobots/lib/pkgconfig"
 export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:/opt/openrobots/lib"
-- 
GitLab