-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
94 lines (82 loc) · 2.86 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
87
88
89
90
91
92
93
94
language: php
sudo: required
addons:
hosts:
- simplesamlphp.test
firefox: "35.0.1"
postgresql: "9.3"
apt:
packages:
- oracle-java9-installer
- oracle-java9-set-default
- redis-server
services:
- redis-server
cache:
directories:
- $HOME/.composer/cache
- $HOME/.npm
# Alternate tests with MySQL and PostgreSQL
matrix:
include:
# PHP 5.5
- php: 5.5
env: DB=pgsql MOODLE_BRANCH=MOODLE_27_STABLE
- php: 5.5
env: DB=mysqli MOODLE_BRANCH=MOODLE_28_STABLE
- php: 5.5
env: DB=pgsql MOODLE_BRANCH=MOODLE_29_STABLE
# PHP 5.6
- php: 5.6
env: DB=mysqli MOODLE_BRANCH=MOODLE_30_STABLE
- php: 5.6
env: DB=pgsql MOODLE_BRANCH=MOODLE_31_STABLE
- php: 5.6
env: DB=mysqli MOODLE_BRANCH=MOODLE_32_STABLE
# PHP 7.0
- php: 7.0
env: DB=pgsql MOODLE_BRANCH=MOODLE_33_STABLE
- php: 7.0
env: DB=mysqli MOODLE_BRANCH=MOODLE_34_STABLE
- php: 7.0
env: DB=pgsql MOODLE_BRANCH=MOODLE_35_STABLE
# PHP 7.1
- php: 7.1
env: DB=mysqli MOODLE_BRANCH=master
before_install:
- export MOODLE_VERSION=$(echo "$MOODLE_BRANCH" | cut -d'_' -f 2)
- if [ "$MOODLE_VERSION" = "master" ] || [ "$MOODLE_VERSION" -ge 32 ]; then export CI=2; else export CI=1; fi
- echo $CI
- phpenv config-rm xdebug.ini
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- tests/idp/simplesamlphp.sh
- cd ../..
- if [ "$CI" = 2 ]; then
nvm install 8.9;
nvm use 8.9;
composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^2;
else
composer create-project -n --no-dev --prefer-dist moodlerooms/moodle-plugin-ci ci ^1;
fi
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH"
install:
- moodle-plugin-ci install -vvv
- echo '$CFG->cookiesecure = false;' >> moodle/config.php
- moodle-plugin-ci add-config 'define("AUTH_SAML2_REDIS_STORE_TEST_SERVER", "127.0.0.1");'
- moodle-plugin-ci add-config 'define("AUTH_SAML2_TEST_IDP_METADATA", "http://simplesamlphp.test:8001/saml2/idp/metadata.php");'
script:
# Run lint on extlib as composer may fetch newer PHP version of libs during update.
- find moodle/auth/saml2/extlib -type f -name '*.php' -exec php -l {} \; | (! grep -v "No syntax errors detected" )
- moodle-plugin-ci validate
- moodle-plugin-ci phplint
- moodle-plugin-ci phpcpd
- moodle-plugin-ci phpmd
- moodle-plugin-ci codechecker
- if [ "$CI" -eq 1 ]; then moodle-plugin-ci csslint ; fi
- if [ "$CI" -eq 1 ]; then moodle-plugin-ci jshint ; fi
- if [ "$CI" -eq 1 ]; then moodle-plugin-ci shifter ; fi
- if [ "$CI" -eq 2 ]; then moodle-plugin-ci savepoints ; fi
- if [ "$CI" -eq 2 ]; then moodle-plugin-ci mustache ; fi
- if [ "$CI" -eq 2 ]; then moodle-plugin-ci grunt ; fi
- moodle-plugin-ci phpunit
- moodle-plugin-ci behat