aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 35c4be53b4edc295bc6e1c38569db50b8fded2ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo: required
language:
    - python
    - c
python: "3.5"
compiler: gcc clang
install:
    - sudo apt-get update -qq
    - sudo apt-get install -qq doxygen libtool automake autoconf
    - sudo python -m pip install pytest
script:
    - ./makeconf.sh
    - ./configure
    - make -j4
    - doxygen doc/Doxyfile
    - python -m pytest test/
    - make clean
    - make -j4 CC=clang CFLAGS="-fsanitize=address -g -O1"
    - python -m pytest test/
    - make clean
    - make -j4 CC=clang CFLAGS="-fsanitize=thread,undefined -g -O1"
    - python -m pytest test/