Annotation of embedaddon/pimd/libite/.travis.yml, revision 1.1.1.1

1.1       misho       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>