From a30d19649dce41ff55799e13ded3ee0ab7131361 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Thu, 6 Jun 2019 18:25:55 -0400 Subject: [PATCH] Add OSX to compile --- .travis.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b76da0d95..a00393b56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,16 @@ stages: # Compile stage without building examples/tests to populate the caches. jobs: 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 - stage: compile os: linux @@ -52,8 +62,8 @@ jobs: # Matrix configuration: os: - - linux - osx + - linux compiler: - gcc - clang