-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path.travis.yml
More file actions
22 lines (22 loc) · 767 Bytes
/
.travis.yml
File metadata and controls
22 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: c
compiler:
- gcc
addons:
apt:
packages:
- libxcb-util0-dev
- libxcb1-dev
- libx11-xcb-dev
- xutils-dev
- xvfb
- valgrind
script:
- "git submodule update --init && ./autogen.sh --prefix=/usr"
- "make all"
- "make check"
- "sleep 1"
- "valgrind --leak-check=full -q --error-exitcode=1 --suppressions=./.travis.valgrind.supp tests/.libs/lt-tests_parser"
- "valgrind --leak-check=full -q --error-exitcode=1 --suppressions=./.travis.valgrind.supp tests/.libs/lt-tests_match"
- "xvfb-run valgrind --leak-check=full -q --error-exitcode=1 --suppressions=./.travis.valgrind.supp tests/.libs/lt-tests_database"
- "sleep 1"
- "make distcheck"