diff options
author | Sean Allred <code@seanallred.com> | 2014-10-31 01:29:23 -0400 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-10-31 01:29:23 -0400 |
commit | 1ff9f814c338a4d8ccb73330cfa57521737bf3f1 (patch) | |
tree | d2d4ad84d08eac822d83866608229e3875588678 /.travis.yml | |
parent | 16ee8a77119db4069078d8c6cd64f362118f7bd7 (diff) |
Use Cask to manage dependencies
https://github.com/cask/cask
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 80b34e4..d72482d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,13 @@ language: emacs env: - "EMACS=emacs24" +before_install: + - curl -fsSkL https://gist.github.com/rejeep/7736123/raw | sh + - export PATH="/home/travis/.cask/bin:$PATH" + - cask info + - cask outdated + - cask install + install: - if [ "$EMACS" = "emacs24" ]; then sudo add-apt-repository -y ppa:cassou/emacs && @@ -12,4 +19,6 @@ install: sudo apt-get -qq install emacs24-nox; fi -script: $EMACS -batch -L . -l ert -l tests.el -f ert-run-tests-batch-and-exit +script: + - $EMACS --version + - $EMACS -batch -L . -l ert -l tests.el -f ert-run-tests-batch-and-exit |