Add Debug/Release in compile stage as well
parent
502bf7cc04
commit
2ac505f35e
26
.travis.yml
26
.travis.yml
|
@ -38,22 +38,38 @@ jobs:
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: osx
|
os: osx
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env: GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
env: CMAKE_BUILD_TYPE=Debug GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
|
- stage: compile
|
||||||
|
os: osx
|
||||||
|
compiler: gcc
|
||||||
|
env: CMAKE_BUILD_TYPE=Release GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
# on Mac, CLANG
|
# on Mac, CLANG
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: osx
|
os: osx
|
||||||
compiler: clang
|
compiler: clang
|
||||||
env: GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
env: CMAKE_BUILD_TYPE=Debug GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
|
- stage: compile
|
||||||
|
os: osx
|
||||||
|
compiler: clang
|
||||||
|
env: CMAKE_BUILD_TYPE=Release GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
# on Linux, GCC
|
# on Linux, GCC
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: linux
|
os: linux
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env: GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
env: CMAKE_BUILD_TYPE=Debug GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
|
- stage: compile
|
||||||
|
os: linux
|
||||||
|
compiler: gcc
|
||||||
|
env: CMAKE_BUILD_TYPE=Release GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
# on Linux, CLANG
|
# on Linux, CLANG
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: linux
|
os: linux
|
||||||
compiler: clang
|
compiler: clang
|
||||||
env: GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
env: CMAKE_BUILD_TYPE=Debug GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
|
- stage: compile
|
||||||
|
os: linux
|
||||||
|
compiler: clang
|
||||||
|
env: CMAKE_BUILD_TYPE=Release GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_EXAMPLES_ALWAYS=ON
|
||||||
# on Linux, with deprecated ON to make sure that path still compiles
|
# on Linux, with deprecated ON to make sure that path still compiles
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: linux
|
os: linux
|
||||||
|
@ -77,7 +93,7 @@ env:
|
||||||
- GTSAM_BUILD_TESTS=ON
|
- GTSAM_BUILD_TESTS=ON
|
||||||
matrix:
|
matrix:
|
||||||
- CMAKE_BUILD_TYPE=Debug
|
- CMAKE_BUILD_TYPE=Debug
|
||||||
- CMAKE_BUILD_TYPE=release
|
- CMAKE_BUILD_TYPE=Release
|
||||||
|
|
||||||
# Uncomment this if you want to exclude clang on linux
|
# Uncomment this if you want to exclude clang on linux
|
||||||
# matrix:
|
# matrix:
|
||||||
|
|
Loading…
Reference in New Issue