-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
58 lines (50 loc) · 1.78 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
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details and example of testing OPTIONAL modules
language: php
dist: trusty
php:
- 5.6
env:
global:
- COMPOSER_ROOT_VERSION=5.0.x-dev
- SS_BASE_URL="https://localhost/"
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
- php: 5.6
env:
- DB=MYSQL
- RECIPE_VERSION=1.0.x-dev
- PHPCS_TEST=1
- php: 7.0
env:
- DB=MYSQL
- RECIPE_VERSION=1.1.x-dev
# This doesn't work due to Multisites not being built to be compatible.
#- MULTISITES_VERSION=5.0.2 # NOTE: Test at a version we know definitely works.
- php: 7.1
env:
- DB=MYSQL
- PHPSTAN_TEST=1
- RECIPE_VERSION=1.2.x-dev
- php: 7.2
env:
- DB=MYSQL
- PHPSTAN_TEST=1
- RECIPE_VERSION=1.2.x-dev
# This doesn't work due to Multisites not being built to be compatible.
#- MULTISITES_VERSION=master # NOTE: Test against the tip for regressions. This could cause failures!
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:$RECIPE_VERSION
- if [[ $MULTISITES_VERSION ]]; then composer require --no-update symbiote/silverstripe-multisites:5.0.2; fi
- if [[ $PHPSTAN_TEST ]]; then composer require phpstan/phpstan-shim:0.9.2; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ -n; fi
- if [[ $PHPSTAN_TEST ]]; then vendor/bin/phpstan analyse src/ -c "phpstan.neon" -a "tests/bootstrap-phpstan.php" --level 3; fi
- vendor/bin/phpunit