File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 25
25
symfony/flex
26
26
- &run-behat-tests |
27
27
vendor/bin/behat --format=progress --no-interaction --colors
28
- - &run-phpunit-tests |
29
- vendor/bin/phpunit --colors=always
30
28
- &update-project-dependencies |
31
29
composer update --no-progress --no-suggest --ansi
32
30
- &validate-openapi-v2-json |
@@ -187,6 +185,15 @@ jobs:
187
185
services :
188
186
- mysql
189
187
before_install :
188
+ - sudo systemctl stop mysql
189
+ - sudo mv /var/lib/mysql /var/ramfs/mysql
190
+ - sudo ln -s /var/ramfs/mysql /var/lib/mysql
191
+ - |
192
+ {
193
+ echo '[mysqld]';
194
+ echo 'innodb_flush_log_at_trx_commit=0';
195
+ } | sudo tee /etc/mysql/conf.d/performance.cnf
196
+ - sudo systemctl start mysql
190
197
- *enable-mongodb-php-extension
191
198
- *disable-xdebug-php-extension
192
199
- *disable-php-memory-limit
You can’t perform that action at this time.
0 commit comments