From 0043ab1889f46b013c64bb0a7daa2abcea0484d1 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 12 Jan 2013 17:45:52 +0100 Subject: [PATCH] Add Travis CI configuration Travis CI is a hosted, continuous integration service. Let's see how it works out for us. --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..5a98b3202 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +# Travis CI configuration +language: c +# Test with both gcc and clang: +compiler: + - gcc + - clang +# How to build: +script: ./bootstrap && ./configure && make check -- 2.43.0