forked from tkf/emacs-jedi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (38 loc) · 1007 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
34
35
36
37
38
39
dist: xenial
sudo: false
language: python
git:
depth: 3
python:
# First python version in this list is the default for matrix.include
# - "3.7"
- "3.6"
- "3.5"
- "3.4"
- "2.7"
env:
matrix:
- EVM_EMACS=emacs-26.3-travis-linux-xenial
global:
# Turn on --use-mirrors option everywhere (even in tox):
- PIP_USE_MIRRORS=t
matrix:
include:
- env: EVM_EMACS=emacs-24.4-travis
- env: EVM_EMACS=emacs-24.5-travis
- 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.2-travis-linux-xenial
- env: EVM_EMACS=emacs-git-snapshot-travis-linux-xenial
before_install:
- pip install -q virtualenv tox tox-travis
- curl -fsSkL https://gist.github.com/rejeep/ebcd57c3af83b049833b/raw > x.sh && source ./x.sh
- evm install $EVM_EMACS --use --skip
- evm list
- emacs --version
- cask
- make before-test
script:
make travis-ci