-
Notifications
You must be signed in to change notification settings - Fork 89
/
.travis.yml
44 lines (42 loc) · 1.13 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
os: linux
dist: xenial
language: python
git:
depth: 3
python:
# First python version in this list is the default for matrix.include
- "3.7"
- "3.9"
- "3.8"
- "3.6"
- "3.5"
- "2.7"
env:
jobs:
- EVM_EMACS=emacs-27.1-travis-linux-xenial
global:
# Turn on --use-mirrors option everywhere (even in tox):
- PIP_USE_MIRRORS=t
jobs:
include:
- env: EVM_EMACS=emacs-25.1-travis
- env: EVM_EMACS=emacs-25.2-travis
- env: EVM_EMACS=emacs-25.3-travis
- env: EVM_EMACS=emacs-26.1-travis-linux-xenial
- env: EVM_EMACS=emacs-26.3-travis-linux-xenial
- env: EVM_EMACS=emacs-27.1-travis-linux-xenial
- env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
before_install:
- pip install -q virtualenv tox tox-travis
- curl -fsSL https://raw.githubusercontent.com/cask/cask/v0.8.7/go | python
- export PATH="/home/travis/.cask/bin:$PATH"
- git clone https://github.com/rejeep/evm.git /home/travis/.evm
- export PATH="/home/travis/.evm/bin:$PATH"
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
- evm list
- emacs --version
- cask
- make before-test
script:
make travis-ci