summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 283fe7a6ca7d7e67e54c7cd9b37b45aa72d7491b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: c
compiler:
  - clang
  - gcc
  
before_script:
  - uname -a  

script: 
  - ./configure --enable-debug
  - make -j3
  
notifications:
  email: false
  
branches:
  only:
    - master