-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
115 lines (102 loc) · 3.14 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
113
114
115
# Travis CI Configuration File
# Tell Travis CI which distro to use
dist: trusty
# Tell Travis CI we're using PHP
language: php
# Run Matrix for these PHP versions
php:
- "5.6"
- "7.0"
- "7.2"
env:
# Global variable is re-defined in matrix-include -list
global:
- WP_TRAVISCI=phpunit
# Run phpunit in Travis matrix for these combinations
matrix:
- WP_MODE=single WP_BRANCH=master
- WP_MODE=single WP_BRANCH=latest
- WP_MODE=single WP_BRANCH=previous
- WP_MODE=multi WP_BRANCH=master
# Define a matrix of additional build configurations
# The versions listed above will automatically create our first configuration,
# so it doesn't need to be re-defined below.
matrix:
include:
# The versions listed below run within Precise distro with PHP 5.2 due to Travis limitation
- php: "5.2"
env: WP_MODE=single WP_BRANCH=master
dist: precise
- php: "5.2"
env: WP_MODE=single WP_BRANCH=latest
dist: precise
- php: "5.2"
env: WP_MODE=single WP_BRANCH=previous
dist: precise
- php: "5.2"
env: WP_MODE=multi WP_BRANCH=master
dist: precise
- env: WP_TRAVISCI="yarn lint"
- env: WP_TRAVISCI="yarn test-dangerci-and-adminpage"
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/.cache/yarn
- $HOME/.phpbrew
# whitelist branches for the "push" build check
branches:
only:
- master
- master-stable
- /^branch-.*$/
- /^feature\/.*$/
# Git clone depth
# By default Travis CI clones repositories to a depth of 50 commits
git:
depth: 1
# Clones WordPress and configures our testing environment
before_script:
- phpenv config-rm xdebug.ini
- export PLUGIN_SLUG=$(basename $(pwd))
- source ~/.nvm/nvm.sh
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- |
if [[ ${TRAVIS_PHP_VERSION:0:2} == "7." ]]; then
composer global require "phpunit/phpunit=5.7.*"
elif [[ ${TRAVIS_PHP_VERSION:0:3} != "5.2" ]]; then
composer global require "phpunit/phpunit=4.8.*"
fi
- nvm install 8
- nvm use 8
- ./tests/prepare-wordpress.sh
- mysql -e "set global wait_timeout = 3600;"
script:
- echo "Running with the following versions:"
- php -v
- phpunit --version
- ./tests/run-travis.sh
sudo: false
notifications:
webhooks:
urls:
- https://betadownload.jetpack.me/travis.php
on_success: always # Beta builder needs notifications for successful builds
email:
on_success: never # default: change
recipients:
- enej.bajgoric@automattic.com
- georgestephanis@automattic.com
- jeremy@automattic.com
- miguel@automattic.com
- rocco@automattic.com
- smart@automattic.com
- eric.binnion@automattic.com
- allendav@automattic.com
- beau@automattic.com
- kraft@automattic.com
- oscar@automattic.com
# Encrypted Slack notification address
- secure: "WQdTdmYuifSW0hiJGXpQGKystMASC50QvxHlyUL5SM3h5GP8aCgeSsHuXvKPe3dT3Pffhk0dSHBfDtdWFwSHW/upURhg0vs4dm7+nxxvGZiTPzKcuAIjgvCoqWM7teyda/XqFGNSnv+XsT34uoyPhhFgd45T3oS+QQ3aNCruFak="
addons:
code_climate:
repo_token: 683bd559e5214ca3b721092af177893f05765ba90d2589fcf35d7e85c6ea01e8