-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
58 lines (49 loc) · 941 Bytes
/
.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
sudo: required
dist: xenial
language: php
addons:
apt:
packages:
- python-software-properties
- libmapnik-dev
- mapnik-utils
- valgrind
php:
- '7.0'
- '7.1'
- '7.2'
#- '7.3'
env:
global:
- REPORT_EXIT_STATUS=1
matrix:
- CC=gcc
matrix:
include:
-
php: '7.0'
env: [CC=clang]
-
php: '7.1'
env: [CC=clang]
-
php: '7.2'
env: [CC=clang]
#-
# php: '7.3'
# env: [CC=clang]
os:
- linux
compiler:
- gcc
- clang
script:
- phpize
- ./configure --with-mapnik
- ./mem_test.sh
after_success:
- find ./tests -name "*.log" | xargs tail -n 1000
- find . -name "*.mem" | xargs cat
after_failure:
- find ./tests -name "*.log" | xargs tail -n 1000
- find . -name "*.mem" | xargs cat