forked from catalyst/moodle-block_multiblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
73 lines (59 loc) · 1.84 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
php:
- 7.2
dist: xenial
addons:
postgresql: "9.6"
chrome: stable
services:
- mysql
env:
- DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_35_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_37_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_37_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_38_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_38_STABLE
- DB=pgsql MOODLE_BRANCH=MOODLE_39_STABLE
- DB=mysqli MOODLE_BRANCH=MOODLE_39_STABLE
- DB=pgsql MOODLE_BRANCH=master
- DB=mysqli MOODLE_BRANCH=master
matrix:
include:
- php: 7.0
env: DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
- php: 7.0
env: DB=mysqli MOODLE_BRANCH=MOODLE_35_STABLE
- php: 7.4
env: DB=pgsql MOODLE_BRANCH=master
- php: 7.4
env: DB=mysqli MOODLE_BRANCH=master
before_install:
- export MOODLE_VERSION=$(echo "$MOODLE_BRANCH" | cut -d'_' -f 2)
- sudo apt-get update
- phpenv config-rm xdebug.ini
- if [ "$MOODLE_VERSION" = 36 ]; then NVMVERSION=8.9; else NVMVERSION=14.0.0; fi
- nvm install $NVMVERSION;
- nvm use $NVMVERSION;
- cd ../..
- git clone --mirror 'https://github.com/moodlehq/moodle-behat-extension.git' '/home/travis/.composer/cache/vcs/git-github.com-moodlehq-moodle-behat-extension.git/' || true
- composer selfupdate
- composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3;
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
install:
- moodle-plugin-ci install -vvv
script:
- moodle-plugin-ci validate
- moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd
- moodle-plugin-ci codechecker
- moodle-plugin-ci phpdoc
- moodle-plugin-ci savepoints
- moodle-plugin-ci mustache
# - moodle-plugin-ci phpunit # No tests yet
- moodle-plugin-ci behat --profile chrome