summaryrefslogblamecommitdiffstats
path: root/.travis.yml
blob: c092a4491e72147f35d2f90c7a7a9a4c76ea00c8 (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.*/

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

before_script:
  - travis_before_script

script:
  - travis_script

after_script:
  - travis_after_script

before_install:
  - $CC --version
  - which $CC
  # workaround clang not system wide, fail on sudo make install
  - export CC=`which $CC`