-
Notifications
You must be signed in to change notification settings - Fork 143
/
.travis.yml
47 lines (39 loc) · 1.22 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Travis CI (MIT License) configuration file for WordPress plugin Custom Post Type UI.
# @link https://travis-ci.org/
# Ditch sudo and use containers.
# @link http://docs.travis-ci.com/user/migrating-from-legacy/#Why-migrate-to-container-based-infrastructure%3F
# @link http://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
sudo: false
# Declare project language.
# @link http://about.travis-ci.org/docs/user/languages/php/
language: php
php:
- 5.6
- 7.2
- nightly
env:
- WP_VERSION=5.2 WP_MULTISITE=0
- WP_VERSION=5.2 WP_MULTISITE=1
matrix:
fast_finish: true
allow_failures:
- php: nightly
env: WP_VERSION=5.2 WP_MULTISITE=0
- php: nightly
env: WP_VERSION=5.2 WP_MULTISITE=1
before_install: composer self-update
install: composer install
before_script:
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- |
if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
composer global require "phpunit/phpunit=5.7.*"
else
composer global require "phpunit/phpunit=4.8.*"
fi
- bash tests/bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
- phpunit --version
branches:
only:
- master
- alpha