• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 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
21