Skip to content
Snippets Groups Projects
Commit cc0c430d authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #6056 from nextcloud/mysql5.6

Add CI job for mysql 5.6
parents 3dc1bcd4 79044048
No related branches found
No related tags found
No related merge requests found
...@@ -235,6 +235,30 @@ pipeline: ...@@ -235,6 +235,30 @@ pipeline:
matrix: matrix:
DB: mysql DB: mysql
PHP: 7.1 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: postgres-php5.6:
image: nextcloudci/php5.6:php5.6-7 image: nextcloudci/php5.6:php5.6-7
commands: commands:
...@@ -638,6 +662,15 @@ matrix: ...@@ -638,6 +662,15 @@ matrix:
- DB: mysql - DB: mysql
PHP: 7.1 PHP: 7.1
ENABLE_REDIS: true 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 - DB: postgres
PHP: 5.6 PHP: 5.6
ENABLE_REDIS: true ENABLE_REDIS: true
...@@ -728,7 +761,7 @@ services: ...@@ -728,7 +761,7 @@ services:
matrix: matrix:
DB: postgres DB: postgres
mysql: mysql:
image: mysql image: mysql:5.7
environment: environment:
- MYSQL_ROOT_PASSWORD=owncloud - MYSQL_ROOT_PASSWORD=owncloud
- MYSQL_USER=oc_autotest - MYSQL_USER=oc_autotest
...@@ -737,6 +770,16 @@ services: ...@@ -737,6 +770,16 @@ services:
when: when:
matrix: matrix:
DB: mysql 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: mysqlmb4:
image: mysql image: mysql
environment: environment:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment