2016-06-20 02:30:43 +08:00
|
|
|
dist: trusty
|
2017-02-27 05:39:15 +08:00
|
|
|
sudo: false
|
2016-05-02 19:26:09 +08:00
|
|
|
language: php
|
|
|
|
php:
|
2017-11-20 02:31:24 +08:00
|
|
|
- 7.0.20
|
2017-11-19 23:56:06 +08:00
|
|
|
- 7.1.9
|
2016-05-02 19:26:09 +08:00
|
|
|
|
2016-05-02 19:37:58 +08:00
|
|
|
cache:
|
|
|
|
directories:
|
2016-06-20 02:30:43 +08:00
|
|
|
- $HOME/.composer/cache
|
2016-05-02 19:26:09 +08:00
|
|
|
|
|
|
|
before_script:
|
2016-06-20 02:30:43 +08:00
|
|
|
- mysql -u root -e 'create database `bookstack-test`;'
|
2017-02-27 05:39:15 +08: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 19:26:09 +08:00
|
|
|
- phpenv config-rm xdebug.ini
|
|
|
|
- composer install --prefer-dist --no-interaction
|
2016-08-27 18:27:23 +08:00
|
|
|
- php artisan clear-compiled -n
|
|
|
|
- php artisan optimize -n
|
2016-05-02 19:26:09 +08:00
|
|
|
- php artisan migrate --force -n --database=mysql_testing
|
|
|
|
- php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
|
|
|
|
|
2017-02-27 05:39:15 +08:00
|
|
|
after_failure:
|
|
|
|
- cat storage/logs/laravel.log
|
|
|
|
|
2016-05-02 19:26:09 +08:00
|
|
|
script:
|
2017-07-27 23:28:23 +08:00
|
|
|
- phpunit
|