-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
72 lines (65 loc) · 2.4 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
# 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:
- 5.6
env:
matrix:
- DB=MYSQL CORE_RELEASE=4
matrix:
include:
- php: 7.0
env:
- RECIPE_VERSION=1.1.x-dev
# NOTE(Jake): 2018-08-17
#
# In cases where Travis-ci fails due to upstream bugs in silverstripe-postgressql
# I simply change this to MYSQL.
#
- DB=PGSQL
#- MULTISITES_VERSION=5.0.3
- php: 7.1
env:
- RECIPE_VERSION=4.2.x-dev
- DB=MYSQL
- PDO=1
#- MULTISITES_VERSION=5.0.3
- php: 7.2
env:
- RECIPE_VERSION=4.x-dev
- DB=MYSQL
- PDO=1
#- MULTISITES_VERSION=5.0.3
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 [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ -n; fi
- vendor/bin/phpunit
# SilverStripe 4 - Multisite specific tests
#
# TreeHugger is using this in the wild
# - https://github.com/symbiote/silverstripe-treehugger/blob/c2f6c514b8fd8b08b12aee7cba03746a718e6784/.travis.yml#L64
# Its also doing a class_exists check in the following code in setUp() to skip tests for builds without Multisites installed. (ie. the default)
# - https://github.com/symbiote/silverstripe-treehugger/blob/c2f6c514b8fd8b08b12aee7cba03746a718e6784/tests/SortableMenuMultisitesTest.php
#
# Finally, if you dig through older versions of TreeHugger (1.X), you will find out how to do this for SilverStripe 3 builds as well.
#
#- if [[ $MULTISITES_VERSION ]]; then composer require symbiote/silverstripe-multisites:$MULTISITES_VERSION; fi
#- if [[ $MULTISITES_VERSION ]]; then vendor/bin/phpunit tests/[YOUR_MULTISITES_SPECIFIC_TEST_HERE_REPLACE_ME] '' flush=all; fi