forked from avocado-framework/avocado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
79 lines (72 loc) · 2.56 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
dist: xenial
language: python
cache: pip
arch: amd64
python:
- "3.5"
- "3.6"
- "3.7"
- "nightly"
env:
- AVOCADO_PARALLEL_CHECK=yes
AVOCADO_LOG_DEBUG=yes
SELF_CHECK_CONTINUOUS=y
AVOCADO_CHECK_LEVEL=1
addons:
apt:
packages:
- libvirt-dev
- golang
install:
- pip install -r requirements-selftests.txt
script:
- make check
matrix:
include:
- python: "3.7"
arch: amd64
env:
- SELF_CHECK_CONTINUOUS=yes
install:
- pip install -r requirements-selftests.txt
- pip install codecov
script:
- make develop
- ./selftests/run_coverage
- codecov
- python: "3.7"
arch: s390x
env:
- AVOCADO_PARALLEL_LINT_JOBS=1
# Travis s390x builders currently shows:
# [Errno 13] Permission denied: '/home/travis/.cache/pip/wheels/xx'
# Disable pip cache dir temporarily
install:
- pip install --no-cache-dir -r requirements-selftests.txt
script:
- make AVOCADO_OPTIONAL_PLUGINS="optional_plugins/glib optional_plugins/golang optional_plugins/html optional_plugins/loader_yaml optional_plugins/resultsdb optional_plugins/result_upload optional_plugins/robot optional_plugins/varianter_cit optional_plugins/varianter_pict optional_plugins/varianter_yaml_to_mux" check
- python: "3.7"
arch: ppc64le
env:
- AVOCADO_PARALLEL_LINT_JOBS=1
addons:
apt:
packages:
- libvirt-dev
- golang
- pkg-config
script:
- make AVOCADO_OPTIONAL_PLUGINS="optional_plugins/glib optional_plugins/golang optional_plugins/html optional_plugins/loader_yaml optional_plugins/resultsdb optional_plugins/result_upload optional_plugins/robot optional_plugins/varianter_cit optional_plugins/varianter_pict optional_plugins/varianter_yaml_to_mux" check
- python: "3.7"
arch: arm64
env:
- AVOCADO_PARALLEL_LINT_JOBS=1
# Travis amd64 builders currently shows:
# [Errno 13] Permission denied: '/home/travis/.cache/pip/wheels/xx'
# Disable pip cache dir temporarily
install:
- pip install --no-cache-dir -r requirements-selftests.txt
script:
- make AVOCADO_OPTIONAL_PLUGINS="optional_plugins/glib optional_plugins/golang optional_plugins/html optional_plugins/loader_yaml optional_plugins/resultsdb optional_plugins/result_upload optional_plugins/robot optional_plugins/varianter_cit optional_plugins/varianter_pict optional_plugins/varianter_yaml_to_mux" check
allow_failures:
- python: "nightly"