]> git.sur5r.net Git - i3/i3status/blob - .travis.yml
Pass the "instance" JSON property key for tztime blocks
[i3/i3status] / .travis.yml
1 language: c
2 compiler:
3   - gcc
4   - clang
5 before_install:
6   # The travis VMs run on Ubuntu 12.04 which is very old and a huge pain to get
7   # into a state where we can build a recent version of i3status :(.
8   - "echo 'APT::Default-Release \"precise\";' | sudo tee /etc/apt/apt.conf.d/default-release"
9   - "echo 'deb http://archive.ubuntu.com/ubuntu/ utopic main universe' | sudo tee /etc/apt/sources.list.d/utopic.list"
10   - sudo apt-get update
11   - sudo apt-get install -t utopic clang-format-3.5
12   - clang-format-3.5 --version
13 install:
14   - sudo apt-get install libconfuse-dev libyajl-dev libasound2-dev libiw-dev asciidoc libcap2-bin
15 script:
16   - make -j
17   - clang-format-3.5 -i **/*.[ch] && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false)