forked from VasekPurchart/Doctrine-Date-Time-Immutable-Types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (27 loc) · 718 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
language: php
sudo: false
php:
- 7.0
- 7.1
- nightly
- hhvm
env:
- # default environment without variables
- COMPOSER_DEPENDENCIES_OPTIONS="--prefer-lowest --prefer-stable"
matrix:
fast_finish: true
allow_failures:
- php: nightly
- php: hhvm
before_install:
- composer self-update
install:
- composer update --no-interaction --prefer-source --ignore-platform-reqs ${COMPOSER_DEPENDENCIES_OPTIONS}
script:
- bin/phing ci-build
after_success:
- if [ "${TRAVIS_ALLOW_FAILURE}" = false ]; then
wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar
&& php coveralls.phar --verbose --config build/coveralls.yml
|| true;
fi