Add OSX to compile
parent
703c705533
commit
a30d19649d
12
.travis.yml
12
.travis.yml
|
@ -34,6 +34,16 @@ stages:
|
||||||
# Compile stage without building examples/tests to populate the caches.
|
# Compile stage without building examples/tests to populate the caches.
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
# on Mac, GCC
|
||||||
|
- stage: compile
|
||||||
|
os: osx
|
||||||
|
compiler: gcc
|
||||||
|
env: GTSAM_ALLOW_DEPRECATED_SINCE_V4=OFF GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_UNSTABLE=ON GTSAM_BUILD_EXAMPLES_ALWAYS=OFF
|
||||||
|
# on Mac, CLANG
|
||||||
|
- stage: compile
|
||||||
|
os: osx
|
||||||
|
compiler: clang
|
||||||
|
env: GTSAM_ALLOW_DEPRECATED_SINCE_V4=OFF GTSAM_BUILD_TESTS=OFF GTSAM_BUILD_UNSTABLE=ON GTSAM_BUILD_EXAMPLES_ALWAYS=OFF
|
||||||
# on Linux, GCC
|
# on Linux, GCC
|
||||||
- stage: compile
|
- stage: compile
|
||||||
os: linux
|
os: linux
|
||||||
|
@ -52,8 +62,8 @@ jobs:
|
||||||
|
|
||||||
# Matrix configuration:
|
# Matrix configuration:
|
||||||
os:
|
os:
|
||||||
- linux
|
|
||||||
- osx
|
- osx
|
||||||
|
- linux
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
|
|
Loading…
Reference in New Issue