mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 01:40:43 +08:00
31 lines
733 B
YAML
31 lines
733 B
YAML
dist: trusty
|
|
sudo: required
|
|
language: php
|
|
php:
|
|
- 7.0
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- mysql-server-5.6
|
|
- mysql-client-core-5.6
|
|
- mysql-client-5.6
|
|
|
|
before_script:
|
|
- mysql -u root -e 'create database `bookstack-test`;'
|
|
- composer config -g github-oauth.github.com $GITHUB_ACCESS_TOKEN
|
|
- phpenv config-rm xdebug.ini
|
|
- composer self-update
|
|
- composer dump-autoload --no-interaction
|
|
- composer install --prefer-dist --no-interaction
|
|
- php artisan clear-compiled -n
|
|
- php artisan optimize -n
|
|
- php artisan migrate --force -n --database=mysql_testing
|
|
- php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
|
|
|
|
script:
|
|
- phpunit |