-
Notifications
You must be signed in to change notification settings - Fork 12
/
.travis.yml
33 lines (33 loc) · 874 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: emacs-lisp
# Emacs fails to build using the latest Trusty image on Travis
# See https://github.com/travis-ci/travis-ci/issues/9073
sudo: required
dist: trusty
group: deprecated-2017Q4
cache:
- directories:
- "$HOME/emacs/"
matrix:
fast_finish: true
allow_failures:
- env: EMACS_VERSION=snapshot
env:
- EMACS_VERSION=25.1
# 25.2 is identical to 25.3 except for a security bug
- EMACS_VERSION=25.3
- EMACS_VERSION=snapshot
before_install:
- export PATH="$HOME/bin:$PATH"
- wget 'https://raw.githubusercontent.com/flycheck/emacs-travis/master/emacs-travis.mk'
- make -f emacs-travis.mk install_emacs
- make -f emacs-travis.mk install_cask
install:
- cask install
script:
- make compile
- make lint
- make test
notifications:
email:
# Default is change, but that includes a new branch's 1st success.
on_success: never