From 7d1bb99e5d041ae339c772cfd387bcb18691f69a Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 1 May 2016 02:21:34 +0200 Subject: [PATCH] Add a travis-ci config file Helps to have pull requests and commits automatically validated. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9326ab3 --- /dev/null +++ b/.travis.yml @@ -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