summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 213b49384b8a3518bed3138f69cf2999b9a5f8f3 (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
25
26
language: php
sudo: required
dist: trusty
os: linux
group: edge

php:
  - 7.0
  - 7.1

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

before_install:
  - lsb_release -a
  - uname -a

before_script:
  - phpize
  - ./configure --enable-suhosin7-experimental --enable-suhosin7-debug
  - make -j2
  - phpenv config-rm xdebug.ini

script:
  - make test NO_INTERACTION=1