Code

.gitignore: Ignore test-suite.log.
[sysdb.git] / .travis.yml
1 language: c
2 env:
3   - CIOPTIONS="--with-readline=libedit"
4   - CIOPTIONS="--with-readline=libreadline"
5   - CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"
6 compiler:
7   - clang
8   - gcc
9 before_install:
10   - sudo apt-get update -qq
11 install:
12   - sudo apt-get install -qq check flex bison libtool libltdl-dev
13   - sudo apt-get install -qq libdbi-dev libedit-dev libreadline-dev
14   - sudo pip install cpp-coveralls
15   - pip show cpp-coveralls
16 script: ./t/cibuild.sh
17 after_success:
18   - test "${CC}x" != "gccx" || coveralls --build-root src --exclude t
19 branches:
20   only:
21     - master
22 matrix:
23   exclude:
24     - compiler: gcc
25       env: CICFLAGS="-fsanitize=address -fno-omit-frame-pointer" CILDFLAGS="-fsanitize=address"