mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Add initial Travis config.
Force to use Trusty distr. Enable tests build. Enable tests run with CTest.
This commit is contained in:
parent
a5a1b28767
commit
5871f3a35d
1 changed files with 19 additions and 0 deletions
19
.travis.yml
Normal file
19
.travis.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
# Ubuntu 14.04 Trusty support, to get newer cmake and compilers.
|
||||
sudo: required
|
||||
dist: trusty
|
||||
|
||||
language: cpp
|
||||
|
||||
script:
|
||||
- mkdir out && cd out
|
||||
- cmake -DGFLAGS_BUILD_TESTING=True ..
|
||||
- make
|
||||
- ctest
|
||||
|
||||
compiler:
|
||||
- clang
|
||||
- gcc
|
Loading…
Add table
Reference in a new issue