branch: master commit 456f6e49dd8360f782a0d1d01ed0b573ba368c0c Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com> Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Use evm in build. --- .travis.yml | 25 +++++++++++++------------ README.md | 2 +- 2 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index a732f67..8a9d303 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,23 +1,24 @@ -# https://github.com/rolandwalker/emacs-travis - language: emacs-lisp node_js: - "0.10" env: - matrix: - - EMACS=emacs24 + - EVM_EMACS=emacs-24.3-bin + - EVM_EMACS=emacs-24.4-bin + - EVM_EMACS=emacs-24.5-bin -install: - - if [ "$EMACS" = "emacs24" ]; then - sudo add-apt-repository -y ppa:cassou/emacs && - sudo apt-get update -qq && - sudo apt-get install -qq emacs24 emacs24-el; - fi - - curl -fsSL https://raw.github.com/cask/cask/master/go | python +before_install: + - sudo mkdir /usr/local/evm + - sudo chown travis:travis /usr/local/evm - export PATH="/home/travis/.cask/bin:$PATH" + - export PATH="/home/travis/.evm/bin:$PATH" + - curl -fsSkL https://raw.github.com/rejeep/evm/master/go | bash + - evm install ${EVM_EMACS} --use + - curl -fsSkL https://raw.github.com/cask/cask/master/go | python + - cask - npm install -g scopifier script: - make test EMACS=${EMACS} + - emacs --version + - make test diff --git a/README.md b/README.md index 0ced14c..6e8865f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ By default, comments and strings are still highlighted syntactically. ## Installation -Requires Emacs 24+. +Requires Emacs 24.3+. JavaScript language support requires either [js2-mode][], or [Node.js 0.10+][node] and the [scopifier][] executable.