-
Notifications
You must be signed in to change notification settings - Fork 24
/
.travis.yml
32 lines (24 loc) · 1.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
dist: trusty
sudo: false
language: php
matrix:
include:
- php: 7.2
env: DB=MYSQL RECIPE_VERSION="^4.3" PHPUNIT_TEST=1
- php: 7.3
env: DB=MYSQL RECIPE_VERSION="^4.4" PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.3
env: DB=MYSQL RECIPE_VERSION="^4" PHPUNIT_TEST=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- if [[ $DB == PGSQL ]]; then composer require --prefer-dist --no-update silverstripe/postgresql 2.1.x-dev; fi
- composer require --no-update silverstripe/recipe-cms "$RECIPE_VERSION"
- composer install --prefer-source --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ ; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi