Add OSX to compile

release/4.3a0
Frank Dellaert 2019-06-06 18:25:55 -04:00
parent 703c705533
commit a30d19649d
1 changed files with 11 additions and 1 deletions

View File

@ -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