forked from pinpoint-apm/pinpoint-c-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
111 lines (98 loc) · 2.35 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
env:
global:
- ROOT=$PWD
- REPORT_EXIT_STATUS=1
os: linux
matrix:
include:
- language: c++
script:
- cd common
- mkdir -p build
- cd build
- cmake -DWITH_TEST_CASE=1 -DWITH_CODECOVERAGE=1 -DCMAKE_BUILD_TYPE=Debug ..
- make
- ./bin/unittest
- language: php
php: "7.4"
script:
- phpize
- ./configure
- ls build/lib
- make
- make test TESTS=src/PHP/tests/
- language: php
php: "7.3"
script:
- phpize
- ./configure
- make
- make test TESTS=src/PHP/tests/
- language: php
php: "7.2"
script:
- phpize
- ./configure
- make
- make test TESTS=src/PHP/tests/
- language: php
php: "7.1"
script:
- phpize
- ./configure
- make
- make test TESTS=src/PHP/tests/
- language: php
php: "7.0"
script:
- phpize
- ./configure
- make
- make test TESTS=src/PHP/tests/
- language: php
php: "5.6"
script:
- phpize
- ./configure
- make
- make test TESTS=src/PHP/tests5/
- language: python
python: "3.8"
script:
- cmake --version
- pip install -r requirements.txt
- python setup.py install
- nosetests src/PY/test
- language: python
python: "3.6"
script:
- cmake --version
- pip install -r requirements.txt
- python setup.py install
- nosetests src/PY/test --ignore-files="TestCoroutines.*"
- language: python
python: "3.5"
script:
- cmake --version
- pip install -r requirements.txt
- python setup.py install
- nosetests src/PY/test --ignore-files="TestCoroutines.*"
- language: python
python: "3.7"
script:
- cmake --version
- pip install -r requirements.txt
- python setup.py install
- nosetests src/PY/test
- language: python
python: "2.7"
script:
- cmake --version
- pip install -r requirements.txt
- python setup.py install
- nosetests src/PY/test --ignore-files="TestCoroutines.*"
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
email: