Created
November 12, 2015 17:50
-
-
Save joeheyming/c8102e09a6f109654a7b to your computer and use it in GitHub Desktop.
Example emacs lisp travis yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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