mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
24 lines
767 B
YAML
24 lines
767 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- hhvm
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm
|
|
sudo: false
|
|
before_script:
|
|
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
|
|
- mysql -u root -e "CREATE DATABASE rhymix"
|
|
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')"
|
|
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php -S localhost:8000 & fi
|
|
- wget http://codeception.com/releases/2.1.11/codecept.phar
|
|
script:
|
|
- php codecept.phar build
|
|
- if [[ $TRAVIS_PHP_VERSION == "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis --skip install; fi
|
|
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then php codecept.phar run -d --fail-fast --env travis; fi
|
|
- grunt lint
|
|
notifications:
|
|
email: false
|