-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
90 lines (83 loc) · 3 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
86
87
88
89
90
language: cpp
compiler: clang
os: linux
dist: xenial
sudo: false
matrix:
include:
- env: TEST="Unit Tests"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-8
packages:
- g++-7 # we need this one for the libstdc++.
- clang-8
- ninja-build
- python
- python-pip
- python3
- python3-pip
- libboost-python-dev
- libtiff5-dev
- libjpeg-dev
install:
- pip2 install -q --user setuptools
- pip2 install -q --user -r PythonAPI/test/requirements.txt
- pip2 install -q --user -r PythonAPI/carla/requirements.txt
- pip3 install -q --user setuptools
- pip3 install -q --user -r PythonAPI/test/requirements.txt
- pip3 install -q --user -r PythonAPI/carla/requirements.txt
script:
- while sleep 2m; do echo "still building..."; done &
- make setup >> build.log 2>&1
- make LibCarla >> build.log 2>&1
- make PythonAPI >> build.log 2>&1
- make examples >> build.log 2>&1
- kill %1
- make check ARGS="--all --gtest_args=--gtest_filter=-*_mt"
after_failure:
- tail --lines=2000 build.log
- env: TEST="Pylint 2"
addons:
apt:
packages:
- python
- python-pip
install:
- pip2 install -q --user pylint
- pip2 install -q --user -r PythonAPI/carla/requirements.txt
- pip2 install -q --user -r PythonAPI/examples/requirements.txt
- pip2 install -q --user -r PythonAPI/test/requirements.txt
- pip2 install -q --user -r PythonAPI/util/requirements.txt
script:
- shopt -s globstar
- pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/BuildTools/*.py
- env: TEST="Pylint 3"
addons:
apt:
packages:
- python3
- python3-pip
install:
- pip3 install -q --user setuptools
- pip3 install -q astroid==2.2.5 pylint==2.3.1
- pip3 install -q --user -r PythonAPI/carla/requirements.txt
- pip3 install -q --user -r PythonAPI/examples/requirements.txt
- pip3 install -q --user -r PythonAPI/test/requirements.txt
- pip3 install -q --user -r PythonAPI/util/requirements.txt
- pip3 install -q --user -r Util/Docker/requirements.txt
script:
- shopt -s globstar
- pylint --disable=R,C --rcfile=PythonAPI/.pylintrc PythonAPI/**/*.py Util/Docker/*.py Util/BuildTools/*.py
- env: TEST="MkDocs"
install:
- pip install -q --user -r PythonAPI/docs/requirements.txt
- pip install -q --user mkdocs
script:
- make PythonAPI.docs
- git diff --quiet HEAD --; if [ ! $? -eq 0 ]; then echo "Python API reference changed, forgot to run \"make PythonAPI.docs\"?"; exit 1; fi
- mkdocs build --verbose --clean --strict --site-dir _site
notifications:
email: false