-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
86 lines (77 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
85
86
language: php
sudo: false
services:
- mysql
- postgresql
- docker
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
env:
global:
- PHPUNIT_IGNORE_PATHS=cli,db,settings.php,version.php,ws_endpoint.php
- COVERALLS=FALSE
jobs:
include:
# Moodle Master (Requires PHP 7.2 and up)
- php: 7.3
env: MOODLE_BRANCH=master DB=pgsql COVERALLS=TRUE
addons:
postgresql: "10"
- php: 7.3
env: MOODLE_BRANCH=master DB=mysqli
- php: 7.2
env: MOODLE_BRANCH=master DB=pgsql
- php: 7.2
env: MOODLE_BRANCH=master DB=mysqli
# Moodle 3.8
- php: 7.1
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=mysqli
- php: 7.3
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
addons:
postgresql: "10"
# Moodle 3.7
- php: 7.1
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
# Moodle 3.6
- php: 7.2
env: MOODLE_BRANCH=MOODLE_36_STABLE DB=pgsql
addons:
postgresql: "9.5"
# Moodle 3.5 LTS
- php: 7.0
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=mysqli
- php: 7.1
env: MOODLE_BRANCH=MOODLE_35_STABLE DB=pgsql
addons:
postgresql: "9.4"
before_install:
- phpenv config-rm xdebug.ini
- if [ -n "$PGVER" ]; then
sudo /etc/init.d/postgresql stop;
sudo /etc/init.d/postgresql start $PGVER;
fi
- cd ../..
- 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
script:
- moodle-plugin-ci phplint
- moodle-plugin-ci phpmd
- moodle-plugin-ci validate
- moodle-plugin-ci savepoints
- moodle-plugin-ci mustache
- moodle-plugin-ci grunt
- if [[ "$COVERALLS" == "TRUE" ]]; then
moodle-plugin-ci phpunit --coverage-clover;
else
moodle-plugin-ci phpunit;
fi
- moodle-plugin-ci behat
after_script:
- moodle-plugin-ci phpcpd
- moodle-plugin-ci codechecker
- moodle-plugin-ci coveralls-upload