forked from defunkt/gist.el
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
34 lines (28 loc) · 842 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
language: generic
sudo: true
env:
matrix:
- EMACS=emacs24
- EMACS=emacs-snapshot
global:
# - SOME_TOKEN=some_value
before_install:
- git submodule --quiet update --init --recursive
# This install script come from https://github.com/rolandwalker/emacs-travis
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;
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;
fi
script:
- uname -a
- make check