forked from lorenzo/cakephp-email-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (32 loc) · 1.08 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
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
sudo: false
env:
matrix:
- DB=mysql db_dsn='mysql://[email protected]/cakephp_test'
global:
- DEFAULT=1
matrix:
fast_finish: true
include:
- php: 7.3
env: DEFAULT=0 COVERALLS=1 PHPCS=1 DB=mysql db_dsn='mysql://[email protected]/cakephp_test'
addons: *php7_addon
before_script:
- composer self-update
- composer install --prefer-source --no-interaction
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
- command -v phpenv > /dev/null && phpenv rehash || true
script:
- sh -c "if [ '$COVERALLS' = '1' ]; then vendor/bin/phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then vendor/bin/php-coveralls -v; fi"
- sh -c "if [ '$DEFAULT' = '1' ]; then vendor/bin/phpunit --stderr; fi"
- sh -c "if [ '$PHPCS' = '1' ]; then vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests; fi"
notifications:
email: false