summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml15
1 files changed, 8 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index 3fec8b1..b6ba41e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,10 +21,6 @@ install:
# how to build
script:
- - ( mkdir build_debug && cd build_debug &&
- cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERAGE=ON .. &&
- make -j &&
- CTEST_OUTPUT_ON_FAILURE=1 make ExperimentalTest ExperimentalMemCheck )
- ( mkdir build && cd build &&
cmake .. &&
make -j &&
@@ -36,14 +32,19 @@ script:
make &&
sudo make install &&
sudo ldconfig )
+ - ( cd build &&
+ cmake -DCMAKE_BUILD_TYPE=Debug -DCOVERAGE=ON .. &&
+ make -j &&
+ sudo make install &&
+ sudo ldconfig &&
+ CTEST_OUTPUT_ON_FAILURE=1 make ExperimentalTest ExperimentalCoverage ExperimentalMemCheck )
after_success:
# Push coverage info on coveralls.io.
# Ignore generated files, samples and tests
- coveralls
- --exclude "build_debug/bindings/python"
- --exclude "build_debug/CMakeFiles"
- --exclude "build"
+ --exclude "build/bindings/python"
+ --exclude "build/CMakeFiles"
--exclude "skeleton-subsystem"
--exclude "test/test-subsystem"
--exclude "bindings/c/Test.cpp"