We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cad8fc commit ea1d426Copy full SHA for ea1d426
.travis.yml
@@ -17,8 +17,10 @@ env:
17
- PDO_MYSQL_TEST_HOST=127.0.0.1
18
- REPORT_EXIT_STATUS=1
19
matrix:
20
- - ENABLE_MAINTAINER_ZTS=0
21
- - ENABLE_MAINTAINER_ZTS=1
+ - ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
+ - ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=0
22
+ - ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=1
23
+ - ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1
24
25
before_script:
26
# Compile PHP
travis/compile.sh
@@ -4,8 +4,14 @@ if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
4
else
5
TS="";
6
fi
7
+if [[ "$ENABLE_DEBUG" == 1 ]]; then
8
+ DEBUG="--enable-debug";
9
+else
10
+ DEBUG="";
11
+fi
12
./buildconf
13
./configure --quiet \
14
+$DEBUG \
15
$TS \
16
--with-pdo-mysql=mysqlnd \
--with-mysql=mysqlnd \
0 commit comments