Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CI job for mysql 5.6 #6056

Merged
merged 1 commit into from
Aug 10, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 44 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,30 @@ pipeline:
matrix:
DB: mysql
PHP: 7.1
mysql5.6-php5.6:
image: nextcloudci/php5.6:php5.6-7
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
when:
matrix:
DB: mysql5.6
PHP: 5.6
mysql5.6-php7.0:
image: nextcloudci/php7.0:php7.0-13
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
when:
matrix:
DB: mysql5.6
PHP: "7.0"
mysql5-6-php7.1:
image: nextcloudci/php7.1:php7.1-12
commands:
- NOCOVERAGE=true TEST_SELECTION=DB ./autotest.sh mysql
when:
matrix:
DB: mysql5.6
PHP: 7.1
postgres-php5.6:
image: nextcloudci/php5.6:php5.6-7
commands:
Expand Down Expand Up @@ -638,6 +662,15 @@ matrix:
- DB: mysql
PHP: 7.1
ENABLE_REDIS: true
- DB: mysql5.6
PHP: 5.6
ENABLE_REDIS: true
- DB: mysql5.6
PHP: 7.0
ENABLE_REDIS: true
- DB: mysql5.6
PHP: 7.1
ENABLE_REDIS: true
- DB: postgres
PHP: 5.6
ENABLE_REDIS: true
Expand Down Expand Up @@ -728,7 +761,7 @@ services:
matrix:
DB: postgres
mysql:
image: mysql
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=owncloud
- MYSQL_USER=oc_autotest
Expand All @@ -737,6 +770,16 @@ services:
when:
matrix:
DB: mysql
mysql:
image: mysql:5.6
environment:
- MYSQL_ROOT_PASSWORD=owncloud
- MYSQL_USER=oc_autotest
- MYSQL_PASSWORD=owncloud
- MYSQL_DATABASE=oc_autotest
when:
matrix:
DB: mysql5.6
mysqlmb4:
image: mysql
environment:
Expand Down