blob: 20da6ac54b070683b168e2480a85fe1d9d39c3ec (
plain)
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
35
|
language: generic
sudo: false
cache:
directories:
- emacs-25.3
before_install:
- ./download_emacs_src.sh
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
- evm install $EVM_EMACS --use --skip
- cask
env:
- EVM_EMACS=emacs-25.1-travis
- EVM_EMACS=emacs-25.2-travis
- EVM_EMACS=emacs-25.3-travis
- EVM_EMACS=emacs-26.1-travis
- EVM_EMACS=emacs-26.2-travis
# - EVM_EMACS=emacs-git-snapshot-travis
script:
- emacs --version
# Test interpreted code.
- cask exec ert-runner
# Test compiled code.
- cask build
- cask exec ert-runner
notifications:
email: false
matrix:
fast_finish: true
allow_failures:
- env: EVM_EMACS=emacs-git-snapshot-travis
|