.travis.yml 428 B

12345678910111213141516
  1. language: c
  2. notifications:
  3. email: true
  4. before_install:
  5. - sudo apt-get update -qq
  6. - sudo apt-get install -qq build-essential subversion git autoconf libtool texinfo python-lxml valgrind
  7. - svn checkout https://svn.code.sf.net/p/check/code/trunk check-code
  8. - cd check-code
  9. - autoreconf --install
  10. - ./configure
  11. - make
  12. - sudo make install
  13. - sudo ldconfig
  14. - cd ..
  15. script: ./autogen.sh && ./configure && make && make check