summaryrefslogtreecommitdiff
path: root/travis
diff options
context:
space:
mode:
authorFerenc Kovacs <tyrael@php.net>2014-04-27 17:52:59 +0200
committerFerenc Kovacs <tyrael@php.net>2014-04-29 16:09:42 +0200
commit4cad8fcad2cd4dc965da8c03bacb6a25d293b7c1 (patch)
tree4d123ecb154f481165d499fbc7c2ea4759ed8f4a /travis
parent35d213c9ce1e9d1b974414c393c4a72f19eadbb4 (diff)
downloadphp-git-4cad8fcad2cd4dc965da8c03bacb6a25d293b7c1.tar.gz
separate travis jobs for TS and NTS builds
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/compile.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/travis/compile.sh b/travis/compile.sh
index eee3f9ad89..85aca88df9 100755
--- a/travis/compile.sh
+++ b/travis/compile.sh
@@ -1,6 +1,12 @@
#!/bin/bash
+if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
+ TS="--enable-maintainer-zts";
+else
+ TS="";
+fi
./buildconf
./configure --quiet \
+$TS \
--with-pdo-mysql=mysqlnd \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \