2014-12-23 00:25:40 +01:00
|
|
|
sudo: false
|
2013-12-02 20:41:26 +01:00
|
|
|
language: php
|
2014-06-21 22:05:19 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2014-12-18 00:50:37 +01:00
|
|
|
- php: 5.5
|
|
|
|
env: WP_TRAVISCI=travis:js
|
2015-02-18 18:46:18 +01:00
|
|
|
- php: 5.2
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
2014-12-18 00:50:37 +01:00
|
|
|
- php: 5.3
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
|
|
|
- php: 5.4
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
|
|
|
- php: 5.5
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
|
|
|
- php: 5.6
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
|
|
|
- php: hhvm
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
2015-07-27 17:15:34 +02:00
|
|
|
- php: 7.0
|
2015-02-26 18:49:13 +01:00
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
2015-10-02 18:50:53 +02:00
|
|
|
- php: nightly
|
|
|
|
env: WP_TRAVISCI=travis:phpunit
|
2014-06-21 22:05:19 +02:00
|
|
|
allow_failures:
|
2014-12-18 00:50:37 +01:00
|
|
|
- php: hhvm
|
2015-07-27 17:15:34 +02:00
|
|
|
- php: 7.0
|
2015-10-02 18:50:53 +02:00
|
|
|
- php: nightly
|
2014-06-21 22:05:19 +02:00
|
|
|
before_install:
|
2014-12-18 00:50:37 +01:00
|
|
|
- WP_CORE_DIR=/tmp/wordpress/
|
|
|
|
- |
|
|
|
|
if [[ "$WP_TRAVISCI" == "travis:phpunit" ]]; then
|
|
|
|
mysql -e "CREATE DATABASE wordpress_tests;" -uroot
|
|
|
|
cp wp-tests-config-sample.php wp-tests-config.php
|
|
|
|
sed -i "s/youremptytestdbnamehere/wordpress_tests/" wp-tests-config.php
|
|
|
|
sed -i "s/yourusernamehere/travis/" wp-tests-config.php
|
|
|
|
sed -i "s/yourpasswordhere//" wp-tests-config.php
|
|
|
|
svn checkout https://plugins.svn.wordpress.org/wordpress-importer/trunk tests/phpunit/data/plugins/wordpress-importer
|
|
|
|
fi
|
2013-12-02 20:41:26 +01:00
|
|
|
before_script:
|
2014-12-23 00:46:46 +01:00
|
|
|
- npm install -g npm
|
2014-12-18 00:50:37 +01:00
|
|
|
- npm install -g grunt-cli
|
|
|
|
- npm install
|
2014-06-21 22:05:19 +02:00
|
|
|
script: grunt $WP_TRAVISCI
|
2014-12-18 00:50:37 +01:00
|
|
|
notifications:
|
|
|
|
slack:
|
2015-09-26 02:03:24 +02:00
|
|
|
rooms:
|
|
|
|
secure: WuMCpfgrm0GIdPbYzsGOsakZ5x7QIbEBwD+CPHVXGKbL3ZbqQ+BVcDRnMiwzxjgf1vzg2de0taXCSMGKBxsWce23NZkOnmwPdIB8XOnwDV7T7zylgYD5S7p3gI6gV0l8Y3/gROdXFZap6viC1qRr4E79ow53RKk7E3WyOo7TWqo=
|
2015-09-25 22:12:09 +02:00
|
|
|
on_start: never
|
|
|
|
on_failure: always
|
|
|
|
on_success: change
|