commit 33fb79f0d0fcf81ff1d7d8e9a866c4cc7780e0a5 parent efed58af8eeb417e9251e3fc8ad260c4ce246614 Author: Martin Mitas <mity@morous.org> Date: Mon, 3 Oct 2016 20:28:12 +0200 Add recipe for continuous integration builds on https://travis-ci.org Diffstat:
| A | .travis.yml | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml @@ -0,0 +1,16 @@ +# YAML definition for travis-ci.com continuous integration. +# See https://docs.travis-ci.com/user/languages/c + +language: c + +compiler: + - gcc + - clang + +before_script: + - mkdir build + - cd build + - cmake -G 'Unix Makefiles' .. + +script: + - make