-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
95 lines (88 loc) · 2.32 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
os: linux
dist: bionic
language: php
notifications:
email:
on_success: never
on_failure: change
cache:
directories:
- $HOME/.composer/cache
services:
- mysql
jobs:
include:
- php: 7.4
env: WP_VERSION=latest
name: PHPUnit tests (PHP 7.4, latest WP)
- php: 7.3
env: WP_VERSION=latest
name: PHPUnit tests (PHP 7.3, latest WP)
- php: 7.2
env: WP_VERSION=latest
name: PHPUnit tests (PHP 7.2, latest WP)
- php: 7.1
env: WP_VERSION=latest
name: PHPUnit tests (PHP 7.1, latest WP)
- php: 7.0
env: WP_VERSION=latest
dist: xenial
name: PHPUnit tests (PHP 7.0, latest WP)
- php: 5.6
env: WP_VERSION=3.9
dist: xenial
name: PHPUnit tests (PHP 5.6, WP 3.9)
- php: 5.6
env: WP_VERSION=4.4
dist: xenial
name: PHPUnit tests (PHP 5.6, WP 4.4)
- php: 5.6
env: WP_VERSION=4.5
dist: xenial
name: PHPUnit tests (PHP 5.6, WP 4.5)
- php: 5.6
env: WP_VERSION=latest
dist: xenial
name: PHPUnit tests (PHP 5.6, latest WP)
- php: 5.6
env: WP_VERSION=trunk
dist: xenial
name: PHPUnit tests (PHP 5.6, WP trunk)
- php: 7.2
env: WP_TRAVISCI=phpcs
dist: precise
name: PHP CodeSniffer
before_script:
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- |
if [ -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini ]; then
phpenv config-rm xdebug.ini
else
echo "xdebug.ini does not exist"
fi
- |
if [[ ! -z "$WP_VERSION" ]] ; then
bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
composer global require "phpunit/phpunit=4.8.*|5.7.*"
if [[ "$(phpenv version-name)" != "5.6" ]] && [[ "$(phpenv version-name)" != "7.0" ]] ; then
composer install --ignore-platform-reqs
vendor/bin/php-scoper add-prefix --force && cd build && composer dump-autoload && cd ..
else
composer dump-autoload
fi
fi
- |
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
composer install --ignore-platform-reqs
vendor/bin/phpcs --config-set ignore_warnings_on_exit 1
fi
script:
- |
if [[ ! -z "$WP_VERSION" ]] ; then
phpunit
WP_MULTISITE=1 phpunit
fi
- |
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
vendor/bin/phpcs
fi