Skip to content

Instantly share code, notes, and snippets.

@joeheyming
Created November 12, 2015 17:50
Show Gist options
  • Save joeheyming/c8102e09a6f109654a7b to your computer and use it in GitHub Desktop.
Save joeheyming/c8102e09a6f109654a7b to your computer and use it in GitHub Desktop.
Example emacs lisp travis yml
language: emacs-lisp
env:
matrix:
- EMACS=emacs24
- EMACS=emacs-snapshot
global:
- CASK=$HOME/.cask/bin/cask
before_install:
- sudo add-apt-repository -y ppa:cassou/emacs
- sudo add-apt-repository -y ppa:ubuntu-elisp/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq $EMACS
- if [ "$EMACS" = 'emacs-snapshot' ]; then
sudo apt-get install -qq emacs-snapshot-el emacs-snapshot-nox;
fi
- sudo apt-get install -qq global
- curl -fsSkL --max-time 10 --retry 10 --retry-delay 10
https://raw.github.com/cask/cask/master/go | python
script:
make test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment