Skip to content

Commit

Permalink
Use Travis CI Container-based infrastructure and added PHP nightly an…
Browse files Browse the repository at this point in the history
…d HHVM testing
  • Loading branch information
niels-nijens committed Aug 21, 2015
1 parent de502b9 commit 67a6e36
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
language: php

php:
- 5.4
- 5.5
- 5.6

before_script:
- composer self-update
- composer install
- mkdir -p build/logs
sudo: false

matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: nightly
- php: hhvm
allow_failures:
- php: nightly
- php: hhvm
fast_finish: true

before_install: composer self-update

install: composer install

before_script: mkdir -p build/logs

script: vendor/bin/phpunit --coverage-clover build/logs/clover.xml

Expand Down

0 comments on commit 67a6e36

Please sign in to comment.