You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
# https://github.com/rolandwalker/emacs-travis |
|
|
|
language: emacs-lisp |
|
|
|
env: |
|
matrix: |
|
- EMACS=emacs23 |
|
- EMACS=emacs24 |
|
- EMACS=emacs-snapshot |
|
|
|
matrix: |
|
allow_failures: |
|
- env: |
|
- EMACS=emacs-snapshot |
|
|
|
install: |
|
- if [ "$EMACS" = "emacs23" ]; then |
|
sudo apt-get update -qq && |
|
sudo apt-get install -qq emacs23-gtk emacs23-el; |
|
fi |
|
- 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:cassou/emacs && |
|
sudo apt-get update -qq && |
|
sudo apt-get install -qq emacs-snapshot && |
|
sudo apt-get install -qq emacs-snapshot-el emacs-snapshot-gtk; |
|
fi |
|
- mkdir -p lib && curl https://raw.githubusercontent.com/nschum/elisp-lint/stable/elisp-lint.el > lib/elisp-lint.el |
|
|
|
script: |
|
$EMACS --version && $EMACS -Q --batch -l lib/elisp-lint.el -f elisp-lint-files-batch *.el |
|
|
|
notifications: |
|
email: false
|
|
|