-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.travis.yml
30 lines (29 loc) · 832 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
language: emacs-lisp
env:
matrix:
- EMACS=emacs24
- EMACS=emacs-snapshot
global:
- CASK=$HOME/.cask/bin/cask
before_install:
# Install virtualenv
- sudo apt-get install -qq python-virtualenv
- 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
# Install Cask
- curl -fsSkL
--max-time 10
--retry 10
--retry-delay 10
https://raw.github.com/cask/cask/master/go
| python
# The following command does (should) not have any effect on test,
# but to separate installation phase and testing phase:
- make deps
script:
- make travis-ci