File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / pimd / libite / .travis.yml
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Wed Jun 14 09:12:58 2017 UTC (7 years ago) by misho
CVS tags: MAIN, HEAD
Initial revision

    1: # Travis CI integration -- https://travis-ci.org/troglobit/libuev
    2: # Defaults to GNU GCC and autotools: ./configure && make && make test
    3: language: c
    4: 
    5: # Some of the autotests may use sudo, so use non-dockerized build atm.
    6: # http://stackoverflow.com/questions/26299552/travis-sudo-is-disabled
    7: #sudo: true
    8: sudo: false
    9: 
   10: # Test build with both GCC and Clang (LLVM)
   11: compiler:
   12:   - gcc
   13:   - clang
   14: 
   15: #  - make test
   16: script:
   17:   - ./autogen.sh
   18:   - ./configure --disable-silent-rules
   19:   - make -j5 clean all

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>