2016-06-19 14:30:43 -04:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
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
|
|
|
|
|
|
|
addons:
|
2016-06-19 14:30:43 -04:00
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- mysql-server-5.6
|
|
|
|
- mysql-client-core-5.6
|
|
|
|
- mysql-client-5.6
|
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`;'
|
2016-05-02 07:26:09 -04:00
|
|
|
- composer config -g github-oauth.github.com $GITHUB_ACCESS_TOKEN
|
|
|
|
- phpenv config-rm xdebug.ini
|
|
|
|
- composer self-update
|
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
|
|
|
|
|
|
|
|
script:
|
2016-08-27 06:27:23 -04:00
|
|
|
- phpunit
|