forked from OpenGenus/cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
83 lines (77 loc) · 2.5 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
matrix:
include:
#C with clang
- os: linux
language: c
before_script:
- wget https://download.savannah.gnu.org/releases/libgraph/libgraph-1.0.2.tar.gz
- tar -xvf libgraph-1.0.2.tar.gz
- pushd libgraph-1.0.2 && ./configure --prefix=/usr && make && sudo make install && popd
script:
make c
addons:
apt:
sources:
- llvm-toolchain-trusty-5.0
packages:
- clang-5.0
- libsdl1.2-dev
- libsdl-image1.2 libsdl-image1.2-dev guile-1.8 guile-1.8-dev libsdl1.2debian libart-2.0-dev libaudiofile-dev libesd0-dev libdirectfb-dev libdirectfb-extra libfreetype6-dev libxext-dev x11proto-xext-dev libfreetype6 libaa1 libaa1-dev libslang2-dev libasound2 libasound2-dev
env:
- MATRIX_EVAL="CC=clang-5.0"
#C with gcc
- os: linux
language: c
before_script:
- wget https://download.savannah.gnu.org/releases/libgraph/libgraph-1.0.2.tar.gz
- tar -xvf libgraph-1.0.2.tar.gz
- pushd libgraph-1.0.2 && ./configure --prefix=/usr && make && sudo make install && popd
script:
make c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- libsdl1.2-dev
- libsdl-image1.2 libsdl-image1.2-dev guile-1.8 guile-1.8-dev libsdl1.2debian libart-2.0-dev libaudiofile-dev libesd0-dev libdirectfb-dev libdirectfb-extra libfreetype6-dev libxext-dev x11proto-xext-dev libfreetype6 libaa1 libaa1-dev libslang2-dev libasound2 libasound2-dev
env:
- MATRIX_EVAL="CC=gcc-7"
#C++ with g++
- os: linux
language: cpp
script:
./scripts/build_cpp.sh
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env:
- MATRIX_EVAL="CXX=g++-7"
# Verify file name
- os: linux
language: python
python:
- "3.6"
script:
- pip install namanager
- namanager -s third_party/namanager_settings.json --required
# Check formatting of Python code
- os: linux
language: python
python: 3.6
script:
- pip install black
- ./scripts/python_code_style_checker.sh
# Check formatting of Javascript code
- os: linux
language: node_js
node_js: node
script:
- npm install -g prettier
- ./scripts/javascript_code_style_checker.sh
before_install:
- eval "${MATRIX_EVAL}"