blob: bfad83998f619e3886aa56e14e54670af9cca8b8 (
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
|
language: php
sudo: required
dist: trusty
os: linux
group: edge
php:
- 7.0
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
|