summaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: 85a753d39f8e5b8d11dd3d804a61ae060cc740e6 (plain) (tree)
1
2
3
4
5
6
7
8
9

           


             



         


                        
                     
 



                 
                 
 




                                                               

                                    
 
        

                                 

              
                        

       
                 

             
                       
 
language: c

git:
  depth: 1500

compiler:
  - gcc
  - clang

env:
  - MAKE_CHECK="nonroot"
  - MAKE_CHECK="root"
  - MAKE_CHECK="dist"

branches:
  only:
    - master
    - /^stable.*/
    - /^travis.*/

before_install:
  - $CC --version
  - which $CC
  # workaround clang not system wide, fail on sudo make install
  - export CC=`which $CC`
  # workaround travis-ci issue #5301
  - unset PYTHON_CFLAGS

install:
  - source ./.travis-functions.sh
  - travis_install_script

before_script:
  - travis_before_script

script:
  - travis_script

after_script:
  - travis_after_script