forked from timber/timber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (26 loc) · 1.48 KB
/
.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
sudo: false
language: php
php:
- 5.6.30
- 7.1
env:
- WP_VERSION=4.7.9 WP_MULTISITE=0 PREFER_LOWEST="--prefer-lowest --prefer-stable"
- WP_VERSION=4.7.9 WP_MULTISITE=0 PREFER_LOWEST=""
- WP_VERSION=4.7.9 WP_MULTISITE=1 PREFER_LOWEST=""
- WP_VERSION=latest WP_MULTISITE=0 PREFER_LOWEST=""
- WP_VERSION=latest WP_MULTISITE=1 PREFER_LOWEST=""
- WP_VERSION=latest WP_MULTISITE=1 PREFER_LOWEST="--prefer-lowest --prefer-stable"
before_script:
- if [ "$TRAVIS_PHP_VERSION" == 5.5 ] || [ "$TRAVIS_PHP_VERSION" == 5.4 ] || [ "$TRAVIS_PHP_VERSION" == 7.1 ]; then autodetect | pecl install imagick; fi
- if [ "$TRAVIS_PHP_VERSION" == 5.3 ]; then autodetect | pecl install imagick-3.0.1; fi
- bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
# composer install --dev --prefer-source
- composer update $PREFER_LOWEST --dev --prefer-source
- composer require satooshi/php-coveralls:1.0.*
script:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PHP_VERSION" == 7.1 ]; then mkdir -p build/logs; vendor/phpunit/phpunit/phpunit --coverage-clover build/logs/clover.xml -c phpunit.xml; else vendor/phpunit/phpunit/phpunit -c phpunit-nocover.xml; fi
after_script:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PHP_VERSION" == 7.1 ]; then php vendor/bin/coveralls -v; fi
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_PHP_VERSION" == 7.1 ]; then coveralls; fi
- bash <(curl -s https://codecov.io/bash)