blob: 0a46dd091b99af11ce16fbde26ea89a774c6d4d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
language: c
compiler:
- gcc
- clang
env:
- BUILDTOOL=cmake
- BUILDTOOL=autotools
before_script:
- echo 'APT::Install-Recommends "false";' | sudo tee -a /etc/apt/apt.conf
- sudo add-apt-repository ppa:bcandrea/backports
- sudo apt-get update -qq
- sudo apt-get -y install devscripts equivs python-pip libenchant-dev autopoint libcpputest-dev
- sudo mk-build-deps -i debian/control
- sudo pip install msgcheck pylint
script:
- ./scripts/build.sh
- msgcheck po/*.po
- pylint doc/docgen.py
after_success:
- weechat --help
- weechat -r /quit
|