.travis.yml 872 B

12345678910111213141516171819202122232425262728293031323334
  1. language: generic
  2. env:
  3. matrix:
  4. - EMACS_VERSION=emacs-24.4
  5. - EMACS_VERSION=emacs-24.5
  6. - EMACS_VERSION=emacs-25.1
  7. - EMACS_VERSION=emacs-25.2
  8. - EMACS_VERSION=emacs-git-snapshot
  9. - EMACS_VERSION=remacs-git-snapshot
  10. matrix:
  11. allow_failures:
  12. - env: EMACS_VERSION=remacs-git-snapshot
  13. before_script:
  14. # Install evm
  15. - git clone https://github.com/rejeep/evm.git ~/.evm
  16. - export PATH="$HOME/.evm/bin:$PATH"
  17. - evm config path /tmp
  18. - evm list
  19. # use this version of emacs for tests
  20. - evm install "${EMACS_VERSION}-travis" --use --skip
  21. - evm list
  22. - emacs --version
  23. # Install cask
  24. - curl -fsSkL https://raw.github.com/cask/cask/master/go | python
  25. - export PATH="$HOME/.cask/bin:$PATH"
  26. # Install elisp dependencies
  27. - cask install
  28. script:
  29. - cask exec buttercup -L .
  30. - cask exec emacs -Q -L . -batch -f batch-byte-compile *.el