You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
920 B
50 lines
920 B
language: php
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
postgresql: "9.3"
|
|
apt:
|
|
packages:
|
|
- oracle-java8-installer
|
|
- oracle-java8-set-default
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache
|
|
- $HOME/.npm
|
|
|
|
php:
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
|
|
env:
|
|
global:
|
|
- MOODLE_BRANCH=master
|
|
matrix:
|
|
- DB=pgsql
|
|
- DB=mysqli
|
|
|
|
before_install:
|
|
- phpenv config-rm xdebug.ini
|
|
- nvm install node
|
|
- cd ../..
|
|
- composer selfupdate
|
|
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci v2.x-dev
|
|
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
|
|
|
|
install:
|
|
- moodle-plugin-ci install
|
|
|
|
script:
|
|
- moodle-plugin-ci phplint
|
|
- moodle-plugin-ci phpcpd
|
|
- moodle-plugin-ci phpmd
|
|
- moodle-plugin-ci codechecker
|
|
- moodle-plugin-ci validate
|
|
- moodle-plugin-ci savepoints
|
|
- moodle-plugin-ci mustache
|
|
- moodle-plugin-ci grunt
|
|
- moodle-plugin-ci phpunit
|
|
- moodle-plugin-ci behat
|