-
Notifications
You must be signed in to change notification settings - Fork 27
/
.travis.yml
85 lines (82 loc) · 1.89 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
os: linux
dist: xenial
language: python
matrix:
include:
- name: "Python 2.7 Xenial AMD64"
python: 2.7
dist: xenial
- name: "Python 3.4 Xenial AMD64"
python: 3.4
dist: xenial
- name: "Python 3.5 Xenial AMD64"
python: 3.5
dist: xenial
- name: "Python 3.6 Xenial AMD64"
python: 3.6
dist: xenial
- name: "Python 3.7 Xenial AMD64"
python: 3.7
dist: xenial
- name: "Python 3.8 Xenial AMD64"
python: 3.8
dist: xenial
- name: "Python 3.9 Bionic AMD64"
python: 3.9
dist: bionic
- name: "Python 3.10 Bionic AMD64"
python: 3.10
dist: bionic
- name: "Python 3.11 Bionic AMD64"
python: 3.11
dist: bionic
- name: "Python 2.7 Xenial ARM64"
python: 2.7
arch: arm64
dist: xenial
- name: "Python 3.4 Xenial ARM64"
python: 3.4
arch: arm64
dist: xenial
- name: "Python 3.5 Xenial ARM64"
python: 3.5
arch: arm64
dist: xenial
- name: "Python 3.6 Xenial ARM64"
python: 3.6
arch: arm64
dist: xenial
- name: "Python 3.7 Xenial ARM64"
python: 3.7
arch: arm64
dist: xenial
- name: "Python 3.8 Xenial ARM64"
python: 3.8
arch: arm64
dist: xenial
- name: "Python 3.9 Bionic ARM64"
python: 3.9
arch: arm64
dist: bionic
- name: "Python 3.10 Bionic ARM64"
python: 3.10
arch: arm64
dist: bionic
- name: "Python 3.11 Bionic ARM64"
python: 3.11
arch: arm64
dist: bionic
addons:
apt:
sources:
- sourceline: 'ppa:sergey-dryabzhinsky/packages'
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libzstd-dev
script:
- python setup.py test
- python setup.py clean -a
- env LEGACY=1 python setup.py --legacy test
- python setup.py clean -a
- python setup.py --external test || true
- python setup.py clean -a