Merge pull request #6422 from nextcloud/11-6419
[stable11] Use tmpfs for mysql CI containers
This commit is contained in:
commit
7bdedbaad9
|
@ -484,6 +484,8 @@ services:
|
||||||
environment:
|
environment:
|
||||||
- POSTGRES_USER=oc_autotest
|
- POSTGRES_USER=oc_autotest
|
||||||
- POSTGRES_PASSWORD=owncloud
|
- POSTGRES_PASSWORD=owncloud
|
||||||
|
tmpfs:
|
||||||
|
- /var/lib/postgresql/data
|
||||||
when:
|
when:
|
||||||
matrix:
|
matrix:
|
||||||
DB: postgres
|
DB: postgres
|
||||||
|
@ -494,6 +496,8 @@ services:
|
||||||
- MYSQL_USER=oc_autotest
|
- MYSQL_USER=oc_autotest
|
||||||
- MYSQL_PASSWORD=owncloud
|
- MYSQL_PASSWORD=owncloud
|
||||||
- MYSQL_DATABASE=oc_autotest
|
- MYSQL_DATABASE=oc_autotest
|
||||||
|
tmpfs:
|
||||||
|
- /var/lib/mysql
|
||||||
when:
|
when:
|
||||||
matrix:
|
matrix:
|
||||||
DB: mysql
|
DB: mysql
|
||||||
|
@ -505,6 +509,8 @@ services:
|
||||||
- MYSQL_PASSWORD=owncloud
|
- MYSQL_PASSWORD=owncloud
|
||||||
- MYSQL_DATABASE=oc_autotest
|
- MYSQL_DATABASE=oc_autotest
|
||||||
command: [ "--innodb_large_prefix=true", "--innodb_file_format=barracuda", "--innodb_file_per_table=true" ]
|
command: [ "--innodb_large_prefix=true", "--innodb_file_format=barracuda", "--innodb_file_per_table=true" ]
|
||||||
|
tmpfs:
|
||||||
|
- /var/lib/mysql
|
||||||
when:
|
when:
|
||||||
matrix:
|
matrix:
|
||||||
DB: mysqlmb4
|
DB: mysqlmb4
|
||||||
|
|
Loading…
Reference in New Issue