forked from moodlehq/moodle-plugin-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
79 lines (69 loc) · 1.77 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
language: php
addons:
postgresql: "9.6"
services:
- mysql
- postgresql
- docker
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
php:
- 7.4
env:
global:
- IGNORE_PATHS=ignore
- IGNORE_NAMES=ignore_name.php
- MUSTACHE_IGNORE_NAMES=broken.mustache
- DB=pgsql
- MOODLE_BRANCH=master
before_install:
- phpenv config-rm xdebug.ini
- make init
# Mimic how a Moodle plugin would be run.
- cp -R tests/Fixture/moodle-local_ci ../moodle-local_ci
- export PATH="$(cd bin; pwd):$(cd vendor/bin; pwd):$PATH"
- export TRAVIS_BUILD_DIR=$(cd ../moodle-local_ci; pwd)
install:
- moodle-plugin-ci install -vvv
script:
- make test-phpunit
# This is basically "integration" testing.
- 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_BRANCH" != 'master' -a \
"$MOODLE_BRANCH" != 'MOODLE_310_STABLE' -a \
"$MOODLE_BRANCH" != 'MOODLE_39_STABLE' ]
- moodle-plugin-ci phpdoc
- moodle-plugin-ci phpunit --coverage-text
- moodle-plugin-ci behat --profile default
- moodle-plugin-ci behat --profile chrome
jobs:
include:
- stage: Tests
php: 7.3
before_install: skip
install:
- make init
script:
- make validate
- stage: Integration tests
- php: 7.4
env: MOODLE_BRANCH=MOODLE_311_STABLE
- php: 7.4
env: MOODLE_BRANCH=MOODLE_310_STABLE
- php: 7.4
env: MOODLE_BRANCH=MOODLE_39_STABLE
- php: 7.4
env: MOODLE_BRANCH=MOODLE_38_STABLE
- php: 7.2
env: MOODLE_BRANCH=MOODLE_35_STABLE
- php: 7.0
env: MOODLE_BRANCH=MOODLE_35_STABLE