forked from Automattic/jetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
112 lines (101 loc) · 3.27 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Travis CI Configuration File
# Tell Travis CI we're using PHP
language: php
# Setup a global environemnt and overide as needed
env:
global:
- WP_TRAVISCI=phpunit
# Next we define our matrix of additional build configurations to test against.
# The versions listed above will automatically create our first configuration,
# so it doesn't need to be re-defined below.
# Test WP trunk/master and two latest versions on minimum (5.2).
# Test WP latest two versions (4.5, 4.3) on most popular (5.5, 5.6).
# Test WP latest stable (4.5) on other supported PHP (5.3, 5.4).
# Test WP trunk/master on edge platforms (7.0, hhvm, PHP nightly).
# WP_VERSION specifies the tag to use. The way these tests are configured to run
# requires at least WordPress 3.8. Specify "master" to test against SVN trunk.
matrix:
include:
- php: hhvm
env: WP_VERSION=master
sudo: required
dist: trusty
group: edge
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
- php: "nightly"
env: WP_VERSION=master
- php: "5.6"
env: WP_VERSION=4.5 WP_TRAVISCI="gulp travis:js"
- php: "5.6"
env: WP_VERSION=4.5 WP_TRAVISCI="npm run test-client"
- php: "5.2"
env: WP_VERSION=master
- php: "5.2"
env: WP_VERSION=4.4
- php: "5.2"
env: WP_VERSION=4.5
- php: "5.3"
env: WP_VERSION=4.5
- php: "5.4"
env: WP_VERSION=4.5
- php: "5.5"
env: WP_VERSION=master
- php: "5.5"
env: WP_VERSION=4.4
- php: "5.5"
env: WP_VERSION=4.5
- php: "5.6"
env: WP_VERSION=master
- php: "5.6"
env: WP_VERSION=4.4
- php: "5.6"
env: WP_VERSION=4.5
- php: "7.0"
env: WP_VERSION=master
allow_failures:
- php: "hhvm"
- php: "nightly"
# whitelist branches for the "push" build check.
branches:
only:
- master
- master-stable
- /^branch-.*$/
# Clones WordPress and configures our testing environment.
before_script:
- export PLUGIN_SLUG=$(basename $(pwd))
- git clone --depth=1 --branch $WP_VERSION git://develop.git.wordpress.org/ /tmp/wordpress
# - git clone . "/tmp/wordpress/src/wp-content/plugins/$PLUGIN_SLUG"
- cd ..
- mv $PLUGIN_SLUG "/tmp/wordpress/src/wp-content/plugins/$PLUGIN_SLUG"
- cd /tmp/wordpress
- git checkout $WP_VERSION
- mysql -u root -e "CREATE DATABASE wordpress_tests;"
- cp wp-tests-config-sample.php wp-tests-config.php
- sed -i "s/youremptytestdbnamehere/wordpress_tests/" wp-tests-config.php
- sed -i "s/yourusernamehere/root/" wp-tests-config.php
- sed -i "s/yourpasswordhere//" wp-tests-config.php
- cd "/tmp/wordpress/src/wp-content/plugins/$PLUGIN_SLUG"
- ./tests/load-travis.sh
script:
- $WP_TRAVISCI
sudo: false
notifications:
email:
# Encrypted Slack notification address.
- secure: "WQdTdmYuifSW0hiJGXpQGKystMASC50QvxHlyUL5SM3h5GP8aCgeSsHuXvKPe3dT3Pffhk0dSHBfDtdWFwSHW/upURhg0vs4dm7+nxxvGZiTPzKcuAIjgvCoqWM7teyda/XqFGNSnv+XsT34uoyPhhFgd45T3oS+QQ3aNCruFak="