-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
91 lines (83 loc) · 2.01 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
# See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details and example of testing OPTIONAL modules
language: php
dist: trusty
php:
# Silverstripe 3.x
# NOTE: Travis-CI is only supporting PHP 5.4+ from late 2017.
- 5.4
# Silverstripe 4
- 5.5
env:
matrix:
#
# Silverstripe 3.x
#
- DB=MYSQL CORE_RELEASE=3.1
# Silverstripe 4
#
- DB=MYSQL CORE_RELEASE=4
matrix:
include:
#
# Silverstripe 3.x
#
- php: 5.4
env:
- DB=MYSQL
- CORE_RELEASE=3.1
- php: 5.4
env:
- DB=PGSQL
- CORE_RELEASE=3.2
- php: 5.5
env:
- DB=MYSQL
- CORE_RELEASE=3.3
- php: 5.6
env:
- DB=MYSQL
- PHPCS_TEST=1
- CORE_RELEASE=3
#
# 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:
#
# Silverstripe 3
#
- composer self-update || true
- phpenv rehash
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
#
# Silverstripe 4
#
- 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:
#
# Silverstripe 3
#
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs YOUR_MODULE_NAME/src/ YOUR_MODULE_NAME/tests/ -n; fi
- vendor/bin/phpunit YOUR_MODULE_NAME/tests/
#
# Silverstripe 4
#
- 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