blob: ee8c3a9862a33b97f601b0b477e04eb93799f3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#!/bin/bash
#
# ownCloud
#
# @author Thomas Müller
# @copyright 2014 Thomas Müller thomas.mueller@tmit.eu
#
set -e
WORKDIR=$PWD
DB=$1
echo "Work directory: $WORKDIR"
echo "Database: $DB"
if [ "$DB" == "mysql" ] ; then
echo "Setting up mysql ..."
mysql -e 'create database oc_autotest;'
mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY 'owncloud'";
mysql -u root -e "grant all on oc_autotest.* to 'oc_autotest'@'localhost'";
mysql -e "SELECT User FROM mysql.user;"
fi
if [ "$DB" == "pgsql" ] ; then
createuser -U travis -s oc_autotest
fi
#if [ "$DB" == "oracle" ] ; then
# if [ ! -f before_install_oracle.sh ]; then
# wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install_oracle.sh
# fi
# bash ./before_install_oracle.sh
#fi
#
# copy custom php.ini settings
#
if [ $(phpenv version-name) != 'hhvm' ]; then
phpenv config-add tests/travis/custom.ini
fi
|