summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml16
1 files changed, 12 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 5510dfc..bfad839 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,8 @@
1language: php
1sudo: required 2sudo: required
2dist: trusty 3dist: trusty
3 4os: linux
4language: php 5group: edge
5 6
6php: 7php:
7 - 7.0 8 - 7.0
@@ -10,8 +11,15 @@ env:
10 - CC=gcc-4.8 CFLAGS="" 11 - CC=gcc-4.8 CFLAGS=""
11 - CC=clang CFLAGS="" 12 - CC=clang CFLAGS=""
12 13
14before_install:
15 - lsb_release -a
16 - uname -a
17
13before_script: 18before_script:
14 - phpize && ./configure && make 19 - phpize
20 - ./configure --enable-suhosin7-experimental --enable-suhosin7-debug
21 - make -j2
22 - phpenv config-rm xdebug.ini
15 23
16script: 24script:
17 - make test 25 - make test NO_INTERACTION=1