From 10802f3f73f2d3ca99907d1e361f567393643de7 Mon Sep 17 00:00:00 2001 From: Kristian Sloth Lauszus Date: Wed, 2 May 2018 10:37:51 +0200 Subject: [PATCH] Build both the debug and release builds --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 904846b..ccc7eaa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,10 @@ before_script: script: - eclipse -noSplash -application org.eclipse.cdt.managedbuilder.core.headlessbuild -import $TRAVIS_BUILD_DIR/left/build -import $TRAVIS_BUILD_DIR/right/build -build all - - make -j2 -C left - - make -j2 -C right + - make -C left clean && make -j2 -C left DEBUG=1 + - make -C left clean && make -j2 -C left DEBUG=0 + - make -C right clean && make -j2 -C right DEBUG=1 + - make -C right clean && make -j2 -C right DEBUG=0 matrix: include: