BookStack/.travis.yml

30 lines
824 B
YAML
Raw Normal View History

2019-09-06 23:10:03 +00:00
dist: bionic
2016-05-02 11:26:09 +00:00
language: php
php:
2019-09-06 23:10:03 +00:00
- '7.1.3'
- '7.2'
2016-05-02 11:26:09 +00:00
2019-09-06 23:14:19 +00:00
services:
- mysql
cache:
directories:
- $HOME/.composer/cache
2016-05-02 11:26:09 +00:00
before_script:
- mysql -u root -e 'create database `bookstack-test`;'
- 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 11:26:09 +00:00
- phpenv config-rm xdebug.ini
- composer install --prefer-dist --no-interaction
- php artisan clear-compiled -n
- php artisan optimize -n
2016-05-02 11:26:09 +00:00
- php artisan migrate --force -n --database=mysql_testing
- php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
2019-09-13 22:58:40 +00:00
script: vendor/bin/phpunit --configuration phpunit.xml
after_failure:
- cat storage/logs/laravel.log