forked from FriendsOfCake/CakePdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
44 lines (31 loc) · 903 Bytes
/
.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
language: php
php:
- 5.4
- 5.5
- 5.6
env:
global:
- DEFAULT=1
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
fast_finish: true
include:
- php: 5.4
env: PHPCS=1 DEFAULT=0
- php: hhvm
- php: hhvm-nightly
before_script:
- sudo touch /usr/bin/wkhtmltopdf && sudo chmod +x /usr/bin/wkhtmltopdf
- sudo touch /usr/bin/latexpdf && sudo chmod +x /usr/bin/latexpdf
- composer self-update
- composer install --prefer-source --no-interaction --dev
- sh -c "if [ '$PHPCS' = '1' ]; then composer require cakephp/cakephp-codesniffer:dev-master; fi"
- phpenv rehash
- set +H
script:
- sh -c "if [ '$DEFAULT' = '1' ]; then phpunit --stderr; fi"
- sh -c "if [ '$PHPCS' = '1' ]; then ./vendor/bin/phpcs -p -n --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config; fi"
notifications:
email: false