2016-05-02 19:26:09 +08:00
|
|
|
language: php
|
|
|
|
php:
|
|
|
|
- 7.0
|
|
|
|
|
2016-05-15 20:53:42 +08:00
|
|
|
node_js:
|
|
|
|
- "4.1.2"
|
|
|
|
|
2016-05-02 19:37:58 +08:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- node_modules
|
|
|
|
- vendor
|
2016-05-02 19:26:09 +08:00
|
|
|
|
|
|
|
addons:
|
2016-05-02 19:50:17 +08:00
|
|
|
mariadb: '10.0'
|
2016-05-02 19:26:09 +08:00
|
|
|
|
2016-05-02 20:14:35 +08:00
|
|
|
before_install:
|
|
|
|
- npm install -g npm@latest
|
|
|
|
|
2016-05-02 19:26:09 +08:00
|
|
|
before_script:
|
|
|
|
- mysql -e 'create database `bookstack-test`;'
|
|
|
|
- composer config -g github-oauth.github.com $GITHUB_ACCESS_TOKEN
|
|
|
|
- phpenv config-rm xdebug.ini
|
|
|
|
- composer self-update
|
|
|
|
- composer install --prefer-dist --no-interaction
|
|
|
|
- npm install
|
|
|
|
- ./node_modules/.bin/gulp
|
|
|
|
- php artisan migrate --force -n --database=mysql_testing
|
|
|
|
- php artisan db:seed --force -n --class=DummyContentSeeder --database=mysql_testing
|
|
|
|
|
|
|
|
script:
|
|
|
|
- vendor/bin/phpunit
|