blob: 5510dfced1d3d76de2ee5833ab419aa832792eae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
sudo: required
dist: trusty
language: php
php:
- 7.0
env:
- CC=gcc-4.8 CFLAGS=""
- CC=clang CFLAGS=""
before_script:
- phpize && ./configure && make
script:
- make test
|