From 1ea0f981a0ed63191429d6c7fe1c9a8b51105953 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Thu, 27 Nov 2014 00:17:13 -0500 Subject: Set up Travis CI Thanks to Renan Ranelli for setting up the tests to run from the command line (PR #4) and for providing the .travis.yml file. --- .travis.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..18db585 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,27 @@ +# Modified from +# https://github.com/rranelli/maven-test-mode/blob/master/.travis.yml + +language: emacs-lisp + +env: + matrix: + - EMACS=emacs24 + - EMACS=emacs-snapshot + +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 + - if [ "$EMACS" = "emacs-snapshot" ]; then + sudo add-apt-repository -y ppa:ubuntu-elisp/ppa && + sudo apt-get update -qq && + sudo apt-get install -qq emacs-snapshot; + fi + +before_script: + make .downloads + +script: + make test EMACS=${EMACS} -- cgit v1.2.3