summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBen Fuhrmannek2016-10-10 17:27:32 +0200
committerBen Fuhrmannek2016-10-10 17:27:32 +0200
commit43c8f5d31aa431a42bc25fa265b506891f7923fc (patch)
tree96cecb93f0b657e7c309ba2c2492b5a49b2ced52 /.travis.yml
parenta4d148c28015a590ad41af80027b3ca4f446586c (diff)
added travis-ci
Diffstat (limited to '')
-rw-r--r--.travis.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..8def438
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,24 @@
1language: php
2os: linux
3
4php:
5 - 5.6
6 - 5.5
7 - 5.4
8
9env:
10 - CC=gcc-4.8 CFLAGS=""
11 - CC=clang CFLAGS=""
12
13before_install:
14 - lsb_release -a
15 - uname -a
16
17before_script:
18 - phpize
19 - ./configure --enable-suhosin-experimental
20 - make -j2 CFLAGS="-DSUHOSIN_DEBUG=1"
21 - phpenv config-rm xdebug.ini
22
23script:
24 - make test NO_INTERACTION=1