.travis.yml 691 B

12345678910111213141516171819202122232425262728293031
  1. language: c
  2. matrix:
  3. include:
  4. - env: test="x64 4.8.4 (make)"
  5. os: linux
  6. dist: trusty
  7. compiler: gcc
  8. script: make
  9. - env: test="x64 4.8.4 (autotools)"
  10. os: linux
  11. dist: trusty
  12. compiler: gcc
  13. script: ./autogen.sh && ./configure && make distcheck
  14. - env: test="x64 5.0 (autotools)"
  15. os: linux
  16. dist: trusty
  17. compiler: clang
  18. script: ./autogen.sh && ./configure && make distcheck
  19. addons:
  20. apt:
  21. packages:
  22. - autoconf
  23. - automake
  24. - libtool
  25. - m4
  26. sources:
  27. - ubuntu-toolchain-r-test