-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy path.travis.yml
32 lines (32 loc) · 894 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
language: emacs-lisp
env:
# - EMACS=emacs23
- EMACS=emacs24
- EMACS=emacs-snapshot
matrix:
allow_failures:
- env: EMACS=emacs-snapshot
before_install:
# Install Node.js/npm
- sudo apt-get install -qq python-software-properties
- sudo add-apt-repository -y ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install -qq nodejs
# Install typescript-tools
- git clone git://github.com/clausreinke/typescript-tools.git
- cd typescript-tools/
- npm install -g
- cd ../
# Install Emacs
- sudo add-apt-repository -y ppa:cassou/emacs
- sudo apt-get update -qq
- sudo apt-get install -qq $EMACS
# Install Cask
- curl -fsSkL --max-time 10 --retry 10 --retry-delay 10 https://raw.github.com/cask/cask/master/go | python
- export PATH="$HOME/.cask/bin:$PATH"
- cask install
script:
make
notifications:
on_success: change
on_failure: change