-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
50 lines (48 loc) · 1.18 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
matrix:
include:
- language: python
python: 3.6
addons:
apt:
update: true
packages:
- python3-pip
before_script:
- pip3 install flask
- pip3 install flask_restful
- pip3 install flask_socketio
- pip3 install lizard
- pip3 install pynput
- lizard web
- cd web/test
script:
- PYTHON_UNIT_TEST=true python unit-test.py
- PYTHON_UNIT_TEST=true python backend-module-test.py
- language: c
compiler: gcc
addons:
apt:
update: true
packages:
- python3
- python3-pip
- cppcheck
- libaio-dev
- libjson-c-dev
- libjemalloc-dev
- llvm-6.0
- clang-6.0
- libclang-6.0-dev
before_script:
- sudo ln -s /usr/bin/clang-6.0 /usr/bin/clang
- pip3 install scons-compiledb
- pip3 install scons
- pip3 install clang-format
- pip3 install lizard
- pip3 install distro
- lizard runner && lizard include
script:
- scons
notifications:
email:
- ss5kijun@gmail.com