diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d48fb29 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,67 @@ +language: php + +sudo: required + +addons: + firefox: "47.0.1" + postgresql: "9.3" + apt: + packages: + - oracle-java8-installer + - oracle-java8-set-default + +cache: + directories: + - $HOME/.composer/cache + - $HOME/.npm + +php: + - 7.0 + - 7.1 + +env: + matrix: + - DB=pgsql MOODLE_BRANCH=MOODLE_32_STABLE + - DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE + - DB=pgsql MOODLE_BRANCH=MOODLE_34_STABLE + - DB=pgsql MOODLE_BRANCH=master + - DB=mysqli MOODLE_BRANCH=MOODLE_32_STABLE + - DB=mysqli MOODLE_BRANCH=MOODLE_33_STABLE + - DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE + - DB=mysqli MOODLE_BRANCH=master + +matrix: + include: + - php: 5.6 + env: DB=pgsql MOODLE_BRANCH=MOODLE_32_STABLE + - php: 5.6 + env: DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE + - php: 5.6 + env: DB=mysqli MOODLE_BRANCH=MOODLE_32_STABLE + - php: 5.6 + env: DB=mysqli MOODLE_BRANCH=MOODLE_33_STABLE + allow_failures: + - env: MOODLE_BRANCH=master + +before_install: + - phpenv config-rm xdebug.ini + - nvm install 8.9 + - nvm use 8.9 + - cd ../.. + - composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2 + - 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