forked from alleyinteractive/wordpress-fieldmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (43 loc) · 939 Bytes
/
.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
sudo: false
language: php
matrix:
include:
- php: 5.3
env: WP_VERSION=4.3.3
- php: 5.3
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=latest
- php: 7.0
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=nightly
- php: 5.6
env: WP_TRAVISCI=phpcs
fast_finish: true
branches:
only:
- master
before_script:
- |
if [[ ! -z "$WP_VERSION" ]] ; then
bash bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
npm install
fi
- |
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
npm install
composer install
fi
script:
- find . -path ./vendor -prune -o -type "f" -iname "*.php" | xargs -L "1" php -l
- |
if [[ ! -z "$WP_VERSION" ]] ; then
phpunit
phpunit -c multisite.xml
grunt qunit:specific --wp=$WP_VERSION
fi
- |
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
grunt phpcs
fi