Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

43 righe
854 B

  1. sudo: false
  2. language: c
  3. env: VERBOSE=1
  4. addons:
  5. apt:
  6. packages:
  7. - build-essential
  8. - pkg-config
  9. - libncursesw5-dev
  10. - libx11-dev
  11. - freeglut3-dev
  12. - ruby-dev
  13. # XXX: not supported by Travis-CI, see
  14. # https://github.com/travis-ci/apt-package-whitelist/issues/1422
  15. # ... so we just build-dep on libcaca-dev!
  16. - libslang2-dev
  17. - libcaca-dev
  18. - libimlib2-dev
  19. # FIXME: disable this for now, as it just outputs garbage
  20. #- texlive-fonts-recommended
  21. #- doxygen-latex
  22. - ruby-minitest
  23. # Travis does shallow clones, but we use the Git history
  24. # for check-copyright. Disable shallow clones; our whole
  25. # history is about 5 MiB anyway.
  26. git:
  27. depth: 9999999
  28. before_install:
  29. - .travis/before_install.sh
  30. - ./bootstrap
  31. os:
  32. - linux
  33. - osx
  34. compiler:
  35. - gcc
  36. - clang