-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
41 lines (34 loc) · 1019 Bytes
/
.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
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details and example of testing OPTIONAL modules
language: php
dist: trusty
php:
# Silverstripe 4
- 5.5
env:
matrix:
- DB=MYSQL CORE_RELEASE=4
matrix:
include:
# Silverstripe 4
#
- php: 5.6
env:
- DB=MYSQL
- PHPCS_TEST=1
- php: 7.0
env:
- DB=PGSQL
- php: 7.1
env:
- DB=MYSQL
- PDO=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:1.0.x-dev
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --standard=vendor/silverstripe/framework/phpcs.xml.dist src/ tests/ ; fi