diff options
author | Ran Benita <ran234@gmail.com> | 2014-04-06 16:37:04 +0300 |
---|---|---|
committer | Ran Benita <ran234@gmail.com> | 2014-04-06 17:20:04 +0300 |
commit | 3013633bbb4966ff868c5393653f5414339c9844 (patch) | |
tree | fcf8ca7a86c8e33977ad10c0f70d6f385a045dfd /.travis.yml | |
parent | 99af72fd098b4aeae1121644c7412824583eaaf0 (diff) | |
download | xorg-lib-libxkbcommon-3013633bbb4966ff868c5393653f5414339c9844.tar.gz |
Add .travis.yml file
This CI service https://travis-ci.org/ builds the project in several
configurations, runs the tests, and if something fails it sends an email.
Testing on some other systems is always good, and there don't seem to
be any drawbacks to this, so why not.
Signed-off-by: Ran Benita <ran234@gmail.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..88dd261 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: c + +before_install: + - sudo apt-get update -qq + - sudo apt-get install xutils-dev + +compiler: + - gcc + - clang + +# libxcb too old -- should enable when possible. +script: ./autogen.sh --disable-x11 && make && make check |