forked from debops/debops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
65 lines (44 loc) · 999 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
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
---
sudo: 'required'
language: 'python'
matrix:
include:
- python: '2.7'
env: 'MODE=docs'
- python: '2.7'
env: 'MODE=syntax'
- python: '2.7'
env: 'MODE=docker'
- python: '2.7'
env: 'MODE=build-sdist'
- python: '3.6'
env: 'MODE=ansible'
- python: '3.5'
env: 'MODE=ansible'
- python: '2.7'
env: 'MODE=ansible'
- python: '3.6'
env: 'MODE=build-wheel'
- python: '3.5'
env: 'MODE=build-wheel'
- python: '2.7'
env: 'MODE=build-wheel'
- python: '3.6'
env: 'MODE=test'
- python: '3.5'
env: 'MODE=test'
- python: '2.7'
env: 'MODE=test'
virtualenv:
system_site_packages: false
services:
- 'docker'
cache:
directories:
- '$HOME/.cache/pip'
before_install:
- "${TRAVIS_BUILD_DIR}/lib/travis/${MODE}/before_install.sh"
install:
- "${TRAVIS_BUILD_DIR}/lib/travis/${MODE}/install.sh"
script:
- "${TRAVIS_BUILD_DIR}/lib/travis/${MODE}/script.sh"