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 35d213c commit 4cad8fcCopy full SHA for 4cad8fc
.travis.yml
@@ -15,8 +15,10 @@ env:
15
- PDO_MYSQL_TEST_USER=travis
16
- PDO_MYSQL_TEST_PASS=
17
- PDO_MYSQL_TEST_HOST=127.0.0.1
18
- matrix:
19
- REPORT_EXIT_STATUS=1
+ matrix:
20
+ - ENABLE_MAINTAINER_ZTS=0
21
+ - ENABLE_MAINTAINER_ZTS=1
22
23
before_script:
24
# Compile PHP
travis/compile.sh
@@ -1,6 +1,12 @@
1
#!/bin/bash
2
+if [[ "$ENABLE_MAINTAINER_ZTS" == 1 ]]; then
3
+ TS="--enable-maintainer-zts";
4
+else
5
+ TS="";
6
+fi
7
./buildconf
8
./configure --quiet \
9
+$TS \
10
--with-pdo-mysql=mysqlnd \
11
--with-mysql=mysqlnd \
12
--with-mysqli=mysqlnd \
0 commit comments