74fc2c1ae75e5bba0fa642829236f286721b62a7
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 --use-mirrors
15 - pip show cpp-coveralls
16 script: ./t/cibuild.sh
17 after_success:
18 - coveralls --exclude t --verbose
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"