blob: 0989c7c852c9c35a2ce37681fadcc3058b10920b [file] [log] [blame]
Austin Schuh8fec4f42018-10-29 21:52:32 -07001# Ubuntu 14.04 Trusty support, to get newer cmake and compilers.
2sudo: required
3dist: trusty
4
5language: cpp
6
7os:
8 - linux
9 - osx
10
11compiler:
12 - clang
13 - gcc
14
15env:
16 - CONFIG=Release
17 - CONFIG=Debug
18
19script:
20 - mkdir out && cd out && cmake -D CMAKE_BUILD_TYPE=$CONFIG -D GFLAGS_BUILD_SHARED_LIBS=ON -D GFLAGS_BUILD_STATIC_LIBS=ON -D GFLAGS_BUILD_TESTING=ON .. && cmake --build . --config $CONFIG && ctest