Skip to content

Commit

Permalink
More straightfoward travis include/exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
chillu committed Mar 28, 2013
1 parent 31f5e00 commit 3ff103a
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
language: php

php:
- 5.3
- 5.4

env:
- DB=MYSQL CORE_RELEASE=3.0
- DB=PGSQL CORE_RELEASE=3.0
- DB=SQLITE3 CORE_RELEASE=3.0
- PHPCS=1 CORE_RELEASE=3.0

matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.0
exclude:
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.0
- php: 5.3
env: DB=PGSQL CORE_RELEASE=3.0
- php: 5.4
env: DB=SQLITE3 CORE_RELEASE=3.0
- php: 5.4
env: PHPCS=1 CORE_RELEASE=3.0
allow_failures:
- env: DB=PGSQL CORE_RELEASE=3.0
- php: 5.4
env: PHPCS=1 CORE_RELEASE=3.0
- env: DB=SQLITE3 CORE_RELEASE=3.0
- env: PHPCS=1 CORE_RELEASE=3.0

before_script:
- pear install pear/PHP_CodeSniffer
Expand Down

0 comments on commit 3ff103a

Please sign in to comment.