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