2017-02-16 12:12:19 +00:00
|
|
|
language: php
|
|
|
|
|
2018-10-30 13:52:10 +00:00
|
|
|
# For javascript behat tests we need sudo
|
|
|
|
sudo: true
|
2019-05-28 16:18:51 +00:00
|
|
|
dist: trusty
|
2017-02-16 12:12:19 +00:00
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache
|
2018-10-30 13:52:10 +00:00
|
|
|
- $HOME/.npm
|
2017-02-16 12:12:19 +00:00
|
|
|
|
|
|
|
php:
|
|
|
|
- 7.0
|
2018-05-15 04:27:33 +00:00
|
|
|
- 7.2
|
2017-02-16 12:12:19 +00:00
|
|
|
|
2017-05-21 03:09:08 +00:00
|
|
|
addons:
|
2018-10-30 13:52:10 +00:00
|
|
|
firefox: 47.0.1
|
2018-12-24 08:31:58 +00:00
|
|
|
postgresql: 9.4
|
2018-10-30 13:52:10 +00:00
|
|
|
apt:
|
|
|
|
packages:
|
2019-05-23 02:25:42 +00:00
|
|
|
- openjdk-8-jre-headless
|
2017-05-21 03:09:08 +00:00
|
|
|
|
2017-02-16 12:12:19 +00:00
|
|
|
env:
|
|
|
|
global:
|
2019-05-28 15:57:23 +00:00
|
|
|
- MOODLE_BRANCH=MOODLE_37_STABLE
|
2018-10-30 13:52:10 +00:00
|
|
|
- IGNORE_NAMES=mobile_*.mustache # Mobile mustache has specific syntax, ignore their templates
|
2017-02-16 12:12:19 +00:00
|
|
|
matrix:
|
|
|
|
- DB=pgsql
|
|
|
|
- DB=mysqli
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- phpenv config-rm xdebug.ini
|
2018-10-30 13:52:10 +00:00
|
|
|
- nvm install 8.9
|
|
|
|
- nvm use 8.9
|
2017-02-16 12:12:19 +00:00
|
|
|
- cd ../..
|
2018-12-17 01:47:10 +00:00
|
|
|
- composer create-project -n --no-dev --prefer-dist blackboard-open-source/moodle-plugin-ci ci ^2
|
2017-02-16 12:12:19 +00:00
|
|
|
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
|
|
|
|
|
|
|
|
install:
|
|
|
|
- moodle-plugin-ci install
|
|
|
|
|
|
|
|
script:
|
|
|
|
- moodle-plugin-ci phplint
|
2018-10-30 13:52:10 +00:00
|
|
|
# - moodle-plugin-ci phpcpd # subplugins often have similar code and cause "duplicated code" errors
|
|
|
|
# - moodle-plugin-ci phpmd # too much noise from this check, maybe, some day...
|
2017-02-16 12:12:19 +00:00
|
|
|
- moodle-plugin-ci codechecker
|
|
|
|
- moodle-plugin-ci validate
|
2018-10-30 13:52:10 +00:00
|
|
|
- moodle-plugin-ci savepoints
|
|
|
|
- moodle-plugin-ci mustache
|
|
|
|
- moodle-plugin-ci grunt -t stylelint:css -t js
|
2017-02-16 12:12:19 +00:00
|
|
|
- moodle-plugin-ci phpunit
|
|
|
|
- moodle-plugin-ci behat
|