-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
64 lines (57 loc) · 1.46 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
# NOTE(Jake): 2018-07-25
#
#
# For a less stale example of a SilverStripe 4 .travis.yml file, I suggest seeing
# what UserForms is doing:
# - https://github.com/silverstripe/silverstripe-userforms/blob/master/.travis.yml
#
# Additional SilverStripe 3.X info
# See: https://github.com/silverstripe-labs/silverstripe-travis-support for setup details and example of testing OPTIONAL modules
language: php
php:
# Silverstripe 4
- 5.6
env:
matrix:
# Silverstripe 4
#
- DB=MYSQL CORE_RELEASE=4
matrix:
include:
#
# Silverstripe 4
#
- php: 7.0
env:
- RECIPE_VERSION=1.1.x-dev
- PHPCS_TEST=1
- DB=PGSQL
- PHPUNIT_TEST=1
- php: 7.1
env:
- RECIPE_VERSION=4.2.x-dev
- DB=MYSQL
- PDO=1
- PHPUNIT_TEST=1
- php: 7.2
env:
- RECIPE_VERSION=4.x-dev
- DB=MYSQL
- PDO=1
- PHPUNIT_TEST=1
before_script:
#
# Silverstripe 4
#
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:$RECIPE_VERSION
- 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:
#
# Silverstripe 4
#
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ ; fi