From a0bca728c9d55f8c2b23ebd11c3789fc89bbca6f Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Tue, 17 Mar 2015 08:42:49 +0100 Subject: [PATCH] add travis config --- .travis.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e4d777b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,21 @@ +language: c +compiler: + - gcc + - clang +before_install: + # The travis VMs run on Ubuntu 12.04 which is very old and a huge pain to get + # into a state where we can build a recent version of i3status :(. + - "echo 'APT::Default-Release \"precise\";' | sudo tee /etc/apt/apt.conf.d/default-release" + - "echo 'deb http://archive.ubuntu.com/ubuntu/ utopic main universe' | sudo tee /etc/apt/sources.list.d/utopic.list" + - sudo apt-get update + - sudo apt-get install -t utopic clang-format-3.5 + - clang-format-3.5 --version +install: + # TODO: Once libxkbcommon >= 0.5.0 is in Debian, install it from there. + # These are the Build-Depends of libxkbcommon: + - sudo apt-get install pkg-config xutils-dev bison flex libx11-dev libxcb-xkb-dev x11-xkb-utils x11proto-core-dev x11proto-kb-dev xkb-data xvfb + - (cd /tmp && wget -nv https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.5.0.tar.gz && tar xf xkbcommon-0.5.0.tar.gz && cd libxkbcommon-xkbcommon-0.5.0; ./autogen.sh && ./configure && make && sudo make install) + - sudo apt-get install pkg-config libpam0g-dev libcairo2-dev libxcb1-dev libxcb-dpms0-dev libxcb-image0-dev libxcb-util0-dev libev-dev libxcb-xinerama0-dev libxcb-xkb-dev libxkbfile-dev +script: + - make -j + - clang-format-3.5 -i *.[ch] && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false)