Fix travis file
This commit is contained in:
parent
112aeb25d2
commit
291f2a04c4
1 changed files with 47 additions and 25 deletions
72
.travis.yml
72
.travis.yml
|
@ -1,46 +1,68 @@
|
||||||
language: php
|
language: php
|
||||||
|
|
||||||
notifications:
|
addons:
|
||||||
email:
|
firefox: "47.0.1"
|
||||||
recipients:
|
postgresql: "9.4"
|
||||||
- dmitriim@catalyst-au.net
|
|
||||||
|
|
||||||
sudo: false
|
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- $HOME/.composer/cache
|
- $HOME/.composer/cache
|
||||||
|
- $HOME/.npm
|
||||||
|
|
||||||
php:
|
dist: trusty
|
||||||
- 7.0
|
|
||||||
- 7.1
|
|
||||||
|
|
||||||
addons:
|
matrix:
|
||||||
postgresql: "9.3"
|
include:
|
||||||
|
- php: 7.0
|
||||||
env:
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_33_STABLE
|
||||||
- DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE
|
- php: 7.0
|
||||||
- DB=pgsql MOODLE_BRANCH=MOODLE_34_STABLE
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE
|
||||||
- DB=pgsql MOODLE_BRANCH=master
|
- php: 7.0
|
||||||
- DB=mysqli MOODLE_BRANCH=MOODLE_33_STABLE
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE
|
||||||
- DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE
|
- php: 7.0
|
||||||
- DB=mysqli MOODLE_BRANCH=master
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_34_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_33_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_34_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_35_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_36_STABLE
|
||||||
|
- php: 7.1
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_36_STABLE
|
||||||
|
- php: 7.2
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
|
||||||
|
- php: 7.2
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
|
||||||
|
- php: 7.2
|
||||||
|
env: DB=mysqli MOODLE_BRANCH=master
|
||||||
|
- php: 7.2
|
||||||
|
env: DB=pgsql MOODLE_BRANCH=master
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
|
- phpenv config-rm xdebug.ini
|
||||||
|
- nvm install 8.9
|
||||||
|
- nvm use 8.9
|
||||||
- cd ../..
|
- cd ../..
|
||||||
- composer selfupdate
|
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2
|
||||||
- composer create-project -n --no-dev moodlerooms/moodle-plugin-ci ci ^1
|
|
||||||
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
|
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- moodle-plugin-ci install
|
- moodle-plugin-ci install
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- moodle-plugin-ci validate
|
|
||||||
- moodle-plugin-ci phplint
|
- moodle-plugin-ci phplint
|
||||||
- moodle-plugin-ci codechecker
|
- moodle-plugin-ci codechecker
|
||||||
- moodle-plugin-ci csslint
|
- moodle-plugin-ci validate
|
||||||
- moodle-plugin-ci shifter
|
- moodle-plugin-ci savepoints
|
||||||
- moodle-plugin-ci jshint
|
- moodle-plugin-ci mustache
|
||||||
|
- moodle-plugin-ci grunt
|
||||||
- moodle-plugin-ci phpunit
|
- moodle-plugin-ci phpunit
|
||||||
- moodle-plugin-ci behat
|
- moodle-plugin-ci behat
|
||||||
|
|
Loading…
Reference in a new issue