-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (25 loc) · 749 Bytes
/
.travis.yml
File metadata and controls
25 lines (25 loc) · 749 Bytes
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
env:
- EMACS=emacs EVM_EMACS=emacs-24.5-bin
- EMACS=emacs-snapshot
before_install:
- if [ -n "$EVM_EMACS" ]; then
sudo mkdir /usr/local/evm &&
sudo chown travis:travis /usr/local/evm &&
git clone --depth=1 https://github.com/rejeep/evm.git $HOME/.evm &&
export PATH=$HOME/.evm/bin:$PATH &&
evm install $EVM_EMACS &&
evm use $EVM_EMACS;
else
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;
fi
- git clone --depth=1 https://github.com/cask/cask.git $HOME/.cask
- export PATH=$HOME/.cask/bin:$PATH
install:
- cask install
- cask build
- make test-deps
script:
- make test