summaryrefslogtreecommitdiff
path: root/travis
diff options
context:
space:
mode:
Diffstat (limited to 'travis')
-rwxr-xr-xtravis/compile.sh7
-rwxr-xr-xtravis/setup-mysql.sh4
-rwxr-xr-xtravis/setup-pgsql.sh4
3 files changed, 10 insertions, 5 deletions
diff --git a/travis/compile.sh b/travis/compile.sh
index e373d9b90c..d14309a0dd 100755
--- a/travis/compile.sh
+++ b/travis/compile.sh
@@ -77,8 +77,7 @@ $TS \
--with-ffi \
--enable-zend-test=shared \
--enable-werror \
---with-pear \
-> "$CONFIG_LOG_FILE"
+--with-pear
-make "-j${MAKE_JOBS}" $MAKE_QUIET > "$MAKE_LOG_FILE"
-make install >> "$MAKE_LOG_FILE"
+make "-j${MAKE_JOBS}" $MAKE_QUIET
+make install
diff --git a/travis/setup-mysql.sh b/travis/setup-mysql.sh
index a3ba75cb2d..4866f24442 100755
--- a/travis/setup-mysql.sh
+++ b/travis/setup-mysql.sh
@@ -1,2 +1,6 @@
#!/bin/bash
+if [ -n "$ARM64" ]; then
+ sudo mysql -e 'CREATE USER "travis"@"localhost" IDENTIFIED BY ""'
+ sudo mysql -e 'GRANT ALL PRIVILEGES ON *.* TO "travis"@"localhost"'
+fi
mysql -e "CREATE DATABASE IF NOT EXISTS test"
diff --git a/travis/setup-pgsql.sh b/travis/setup-pgsql.sh
index 108f47db25..9172356265 100755
--- a/travis/setup-pgsql.sh
+++ b/travis/setup-pgsql.sh
@@ -1,4 +1,6 @@
#!/bin/bash
echo '
<?php $conn_str .= " user=postgres"; ?>' >> "./ext/pgsql/tests/config.inc"
-psql -c 'create database test;' -U postgres
+if [ -z "$ARM64" ]; then
+ psql -c 'create database test;' -U postgres
+fi