-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy path.travis.yml
66 lines (60 loc) · 1.58 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
matrix:
include:
- os: linux
language: cpp
env:
- MATRIX_EVAL="export CXX=g++-6"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- os: linux
language: cpp
env:
- MATRIX_EVAL="export CXX=g++-7"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
- os: linux
language: python
python: "3.4"
install:
- pip install django==2.0.13
script:
- cd aura-server
- ./manage.py migrate
- ./manage.py test
- os: linux
language: python
python: "3.5"
install:
- pip install django==2.0.13
script:
- cd aura-server
- ./manage.py migrate
- ./manage.py test
- os: linux
language: python
python: "3.6"
install:
- pip install django==2.0.13
script:
- cd aura-server
- ./manage.py migrate
- ./manage.py test
# Default settings for C++ client build
before_install:
- test -n $CXX && unset CXX
- eval "${MATRIX_EVAL}"
script:
- pip install --user httpbin
- python -m httpbin.core &
- cd aura-client
- cmake . -DCMAKE_BUILD_TYPE=Debug
- make -j2
- ctest --output-on-failure