aboutsummaryrefslogtreecommitdiffstats
path: root/tests/travis/before_install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/travis/before_install.sh')
-rw-r--r--tests/travis/before_install.sh41
1 files changed, 0 insertions, 41 deletions
diff --git a/tests/travis/before_install.sh b/tests/travis/before_install.sh
deleted file mode 100644
index b05e93e856f..00000000000
--- a/tests/travis/before_install.sh
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/bash
-#
-# SPDX-FileCopyrightText: 2015 ownCloud, Inc.
-# SPDX-License-Identifier: AGPL-3.0-only
-#
-# @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