branch: master
commit 8204b8976a6aa82f151838eb8f918ca681483865
Author: rubikitch <[email protected]>
Commit: rubikitch <[email protected]>
.travis.yml: Drop support of Emacs23 (Test in Emacs24)
---
.travis.yml | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 9280a20..743fe94 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,14 @@
language: emacs
-install:
- # Install emacs.
- - "sudo apt-get install emacs23-nox"
+env:
+ - EMACS=emacs24
+install:
+ - if [ "$EMACS" = 'emacs24' ]; then
+ sudo add-apt-repository -y ppa:cassou/emacs &&
+ sudo apt-get -qq update &&
+ sudo apt-get -qq -f install &&
+ sudo apt-get -qq install emacs24 emacs24-el;
+ fi
# run the tests
script: /bin/sh ./autogen.sh && make check