diff options
-rw-r--r-- | .travis.yml | 27 | ||||
-rw-r--r-- | README.org | 2 |
2 files changed, 29 insertions, 0 deletions
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} @@ -2,6 +2,8 @@ #+options: toc:nil #+startup: showall +[[https://travis-ci.org/kyleam/bog][https://travis-ci.org/kyleam/bog.svg]] + Bog is a system for taking research notes in [[http://orgmode.org/][Org mode]]. It adds a few research-specific features, nearly all of which are focused on managing and taking notes with Org, not on writing research articles with Org. |