File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
2
- if [ -n " $ARM64 " ]; then
3
- sudo mysql -e ' CREATE USER "travis"@"localhost" IDENTIFIED BY ""'
4
- sudo mysql -e ' GRANT ALL PRIVILEGES ON *.* TO "travis"@"localhost"'
5
- fi
6
- mysql -e " CREATE DATABASE IF NOT EXISTS test"
1
+ #! /bin/sh
2
+ set -ev
3
+
4
+ mysql -vvv -e " CREATE DATABASE IF NOT EXISTS test"
Original file line number Diff line number Diff line change 1
- #! /bin/bash
2
- echo '
3
- <?php $conn_str .= " user=postgres"; ?>' >> " ./ext/pgsql/tests/config.inc"
4
- if [ -z " $ARM64 " -o -z " $S390X " ]; then
5
- psql -c ' create database test;' -U postgres
1
+ #! /bin/sh
2
+ set -ev
3
+
4
+ # PostgreSQL tests currently don't work on some architectures.
5
+ if test -z " ${ARM64}${S390X} " ; then
6
+ psql -c " ALTER USER postgres PASSWORD 'postgres';" -U postgres
7
+ psql -c " CREATE DATABASE test;" -U postgres
6
8
fi
You can’t perform that action at this time.
0 commit comments