forked from jmcnamara/libxlsxwriter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
41 lines (36 loc) · 964 Bytes
/
.travis.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
language: c
dist: xenial
compiler:
- clang
- gcc
env:
- CFLAGS='-Werror'
- NO_VALGRIND=1 USE_STANDARD_TMPFILE=1 CFLAGS='-Werror'
- NO_VALGRIND=1 CFLAGS='-Werror -m32'
- NO_VALGRIND=1 USE_SYSTEM_MINIZIP=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_DOUBLE_FUNCTION=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_NO_MD5=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_OPENSSL_MD5=1 CFLAGS='-Werror'
- NO_VALGRIND=1 USE_FMEMOPEN=1 CFLAGS='-Werror'
addons:
apt:
update: true
packages:
- gcc-multilib
- libminizip-dev
- libssl-dev
- valgrind
- zlib1g-dev
- zlib1g-dev:i386
before_install:
- sudo pip install pytest
script:
- make V=1
- make test_functional V=1
- make test_unit V=1
- make examples V=1
- make test_valgrind V=1
- sudo make install V=1
- sudo make uninstall V=1
- make test_cmake V=1
- make clean V=1