A simple test case

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-06-11 18:47:40 +04:00
parent 37c6b7ac72
commit f2f22e9817
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -1,11 +1,7 @@
language: php language: php
sudo: true
jobs: addons:
include:
- stage: test
sudo: true
addons:
firefox: "47.0.1" firefox: "47.0.1"
postgresql: "9.3" postgresql: "9.3"
apt: apt:
@ -13,24 +9,24 @@ jobs:
- "oracle-java8-installer" - "oracle-java8-installer"
- "oracle-java8-set-default" - "oracle-java8-set-default"
cache: cache:
directories: directories:
- "$HOME/.composer/cache" - "$HOME/.composer/cache"
- "$HOME/.npm" - "$HOME/.npm"
php: php:
- 5.6 - 5.6
- 7.0 - 7.0
- 7.1 - 7.1
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_35_STABLE - MOODLE_BRANCH=MOODLE_35_STABLE
matrix: matrix:
- DB=mysqli - DB=mysqli
- DB=pgsql - DB=pgsql
before_install: before_install:
- phpenv config-rm xdebug.ini - phpenv config-rm xdebug.ini
- nvm install 8.9 - nvm install 8.9
- nvm use 8.9 - nvm use 8.9
@ -38,10 +34,10 @@ jobs:
- composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2 - 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" - 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 phplint - moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd - moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd - moodle-plugin-ci phpmd
@ -53,6 +49,8 @@ jobs:
- moodle-plugin-ci phpunit - moodle-plugin-ci phpunit
- moodle-plugin-ci behat - moodle-plugin-ci behat
jobs:
include:
- stage: deploy - stage: deploy
before_deploy: before_deploy:
- cd "$TRAVIS_REPO_SLUG" - cd "$TRAVIS_REPO_SLUG"