.travis.yml 391 B

1234567891011121314151617181920212223
  1. # This is the configuration for Travis CI, a free github-integrated service that runs this script for each pull request (if configured)
  2. # provides gcc, clang, make, scons, cmake
  3. language: c++
  4. # alternatives: gcc, clang, or both (as yaml list)
  5. compiler: clang
  6. addons:
  7. apt:
  8. packages:
  9. - hunspell
  10. install:
  11. -
  12. script:
  13. - cd scripts; make -k
  14. - cd ..
  15. notifications:
  16. email: false