Add a travis-ci config file

Helps to have pull requests and commits automatically validated.
This commit is contained in:
Iustin Pop
2016-05-01 02:21:34 +02:00
parent 6a00368c21
commit 7d1bb99e5d

13
.travis.yml Normal file
View File

@@ -0,0 +1,13 @@
#
# travis-ci configuration file
#
language: c
# no tests or configuration steps for now
script: make
# build with both gcc and clang
compiler:
- clang
- gcc
# just in case the defaults change, we're only interested in Linux:
os:
- linux