Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-02-12 14:56:37 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-02-12 15:25:16 +0300
commit692b5a1cad5accc9ec83e5074f6c0a520ab053b9 (patch)
tree4bd4ac8dfaa4febd6290f93b3658ffbadbbf2834 /.drone.yml
parent02e6216f6a61daa8a3c77c7266fd3032fd852ac4 (diff)
Run integration tests in MySQL 5.7 too
The values of the MySQL environment variables must match those used in "travis_ci/core_install.sh" when the server is installed. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index a80df7daa..d30beb343 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -163,4 +163,19 @@ matrix:
- TESTS: php7.2
- TESTS: php7.1-integration
DB: sqlite
+ - TESTS: php7.1-integration
+ DB: mysql
+ DATABASEHOST: mysql-5.7
- TESTS: jsunit
+
+services:
+ mysql-5.7:
+ image: mysql:5.7
+ environment:
+ - MYSQL_ROOT_PASSWORD=owncloud
+ - MYSQL_USER=oc_autotest
+ - MYSQL_PASSWORD=owncloud
+ - MYSQL_DATABASE=oc_autotest
+ when:
+ matrix:
+ DATABASEHOST: mysql-5.7