2016-06-19 14:30:43 -04:00
|
|
|
dist: trusty
|
2017-02-26 16:39:15 -05:00
|
|
|
sudo: false
|
2016-05-02 07:26:09 -04:00
|
|
|
language: php
|
|
|
|
php:
|
|
|
|
- 7.0
|
|
|
|
|
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
|
2016-08-14 08:09:44 -04:00
|
|
|
- composer dump-autoload --no-interaction
|
2016-05-02 07:26:09 -04:00
|
|
|
- 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
|
|
|
|
|
2017-02-26 16:39:15 -05:00
|
|
|
after_failure:
|
|
|
|
- cat storage/logs/laravel.log
|
|
|
|
|
2016-05-02 07:26:09 -04:00
|
|
|
script:
|
2016-08-27 06:27:23 -04:00
|
|
|
- phpunit
|