forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (33 loc) · 1.12 KB
/
.travis.yml
File metadata and controls
41 lines (33 loc) · 1.12 KB
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
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- WP_VERSION=latest WP_MULTISITE=0
- WP_VERSION=latest WP_MULTISITE=1
- WP_VERSION=4.1.7 WP_MULTISITE=0
- WP_VERSION=4.1.7 WP_MULTISITE=1
matrix:
exclude:
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=1
- php: 5.5
env: WP_VERSION=3.7.9 WP_MULTISITE=0
include:
- php: hhvm
env: WP_VERSION=latest WP_MULTISITE=0
- php: hhvm
env: WP_VERSION=latest WP_MULTISITE=1
before_script:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then autodetect | pecl install imagick; fi
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- composer install --dev --prefer-source
script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then mkdir -p build/logs; phpunit --coverage-clover build/logs/clover.xml; fi
- if [ "$TRAVIS_BRANCH" != "master" ]; then phpunit -c bin/phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then coveralls; fi