]> git.pond.sub.org Git - empserver/commitdiff
Add Travis CI configuration
authorMarkus Armbruster <armbru@pond.sub.org>
Sat, 12 Jan 2013 16:45:52 +0000 (17:45 +0100)
committerMarkus Armbruster <armbru@pond.sub.org>
Wed, 8 May 2013 04:55:21 +0000 (06:55 +0200)
Travis CI is a hosted, continuous integration service.  Let's see how
it works out for us.

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..5a98b32
--- /dev/null
@@ -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