summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 86b9f92eacce63908ea2f01f4e8185ec97b9e23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: php
os: linux

php:
  - 5.6
  - 5.5
  - 5.4

env:
  - CC=gcc CFLAGS=""
  - CC=clang   CFLAGS=""

before_install:
  - lsb_release -a
  - uname -a

before_script:
  - phpize
  - ./configure --enable-suhosin-experimental
  - make -j2 CFLAGS="-DSUHOSIN_DEBUG=1"
  - phpenv config-rm xdebug.ini

script:
  - make test NO_INTERACTION=1