summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRALOVICH, Kristof <tade60@freemail.hu>2014-03-26 14:11:58 +0100
committerRALOVICH, Kristof <tade60@freemail.hu>2014-03-26 14:11:58 +0100
commit0c712430663a5eadb8533806d4beccf90f36593a (patch)
treec04812c18b44a055991cde69d258474056c9be72
parent79e5040fab26862c99d429659ef84b47314b25e7 (diff)
travis-ci: fix descriptor
- fix email synthax - remove old branch - enable parallel builds - enable parallel test running - enable debug builds too
-rw-r--r--.travis.yml13
1 files changed, 8 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 31d6d51..c7948b1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,16 +4,19 @@ compiler:
- clang
- gcc
notifications:
- recipients:
- - tade60@freemail.hu
email:
- on_success: change
+ recipients:
+ - tade60@freemail.hu
+ on_success: always
on_failure: always
branches:
only:
- master
- - gant-integration
before_install: sudo apt-get update && uname -a
install: sudo apt-get install libboost-dev libboost-date-time-dev libboost-thread-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-test-dev libusb-dev libxml2-dev valgrind
before_script: mkdir cmake-build
-script: cd cmake-build && cmake ../src -DCMAKE_BUILD_TYPE=Release -DUSE_BOOST_TEST=TRUE -DCMAKE_INSTALL_PREFIX=/usr && make && make test
+script:
+ - cd cmake-build && cmake ../src -DCMAKE_BUILD_TYPE=Release -DUSE_BOOST_TEST=TRUE -DCMAKE_INSTALL_PREFIX=/usr && make -j4 && make test ARGS=-j99
+ - cd cmake-build && make clean
+ - cd cmake-build && cmake ../src -DCMAKE_BUILD_TYPE=Debug -DUSE_BOOST_TEST=TRUE -DCMAKE_INSTALL_PREFIX=/usr && make -j4 && make test ARGS=-j99
+ - cd cmake-build && make clean