-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
34 lines (29 loc) · 1023 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
31
32
33
34
env:
matrix:
- EMACS=emacs24
- EMACS=emacs-snapshot
matrix:
allow_failures:
- env: EMACS=emacs-snapshot
before_install:
- git submodule --quiet update --init --recursive
install:
- if [ "$EMACS" = 'emacs24' ]; then
sudo add-apt-repository -y ppa:cassou/emacs &&
sudo apt-get -qq update &&
sudo apt-get -qq -f install &&
sudo apt-get -qq install emacs24 emacs24-el &&
wget https://raw.githubusercontent.com/magnars/dash.el/master/dash.el;
fi
- if [ "$EMACS" = 'emacs-snapshot' ]; then
sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
sudo apt-get -qq update &&
sudo apt-get -qq -f install &&
sudo apt-get -qq install emacs-snapshot &&
sudo apt-get -qq install emacs-snapshot-el &&
wget https://raw.githubusercontent.com/magnars/dash.el/master/dash.el;
fi
script:
- emacs -batch -l dash.el -l ert -L . -L tests/ -l tests/emaps-tests.el -f ert-run-tests-batch-and-exit
notifications:
email: false