2019-09-06 19:10:03 -04:00
|
|
|
dist: bionic
|
2016-05-02 07:26:09 -04:00
|
|
|
language: php
|
|
|
|
php:
|
2019-09-06 19:10:03 -04:00
|
|
|
- '7.2'
|
2019-09-14 09:12:39 -04:00
|
|
|
- '7.3'
|
2016-05-02 07:26:09 -04:00
|
|
|
|
2019-09-06 19:14:19 -04:00
|
|
|
services:
|
|
|
|
- mysql
|
|
|
|
|
2016-05-02 07:37:58 -04:00
|
|
|
cache:
|
|
|
|
directories:
|
2016-06-19 14:30:43 -04:00
|
|
|
- $HOME/.composer/cache
|
2016-05-02 07:26:09 -04:00
|
|
|
|
|
|
|
before_script:
|
2016-06-19 14:30:43 -04:00
|
|
|
- mysql -u root -e 'create database `bookstack-test`;'
|
2017-02-26 16:39:15 -05:00
|
|
|
- mysql -u root -e "CREATE USER 'bookstack-test'@'localhost' IDENTIFIED BY 'bookstack-test';"
|
|
|
|
- mysql -u root -e "GRANT ALL ON \`bookstack-test\`.* TO 'bookstack-test'@'localhost';"
|
|
|
|
- mysql -u root -e "FLUSH PRIVILEGES;"
|
2016-05-02 07:26:09 -04:00
|
|
|
- phpenv config-rm xdebug.ini
|
|
|
|
- composer install --prefer-dist --no-interaction
|
2016-08-27 06:27:23 -04:00
|
|
|
- php artisan clear-compiled -n
|
|
|
|
- php artisan optimize -n
|
2016-05-02 07:26:09 -04:00
|
|
|
- php artisan migrate --force -n --database=mysql_testing
|
|
|
|
- php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
|
|
|
|
|
2019-09-13 18:58:40 -04:00
|
|
|
script: vendor/bin/phpunit --configuration phpunit.xml
|
|
|
|
|
2017-02-26 16:39:15 -05:00
|
|
|
after_failure:
|
|
|
|
- cat storage/logs/laravel.log
|