woocommerce/.travis.yml

48 lines
1.1 KiB
YAML
Raw Normal View History

2014-09-01 06:03:52 +00:00
language: php
sudo: false
2017-08-22 10:02:32 +00:00
# Test main supported versions of PHP against latest WP.
php:
- 5.6
2015-12-08 18:26:14 +00:00
- 7.0
- 7.1
env:
- WP_VERSION=latest WP_MULTISITE=0
# Additional tests against stable PHP (min recommended version is 5.6) and past supported versions of WP
# and code coverage report.
2014-09-01 06:03:52 +00:00
matrix:
fast_finish: true
2014-09-01 06:03:52 +00:00
include:
2017-07-20 10:23:37 +00:00
- php: 5.3
2017-07-20 14:55:45 +00:00
dist: precise
2017-07-20 10:23:37 +00:00
- php: 5.2
2017-07-20 14:55:45 +00:00
dist: precise
- php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 RUN_PHPCS=1
- php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 RUN_CODE_COVERAGE=1
allow_failures:
- env: WP_VERSION=latest WP_MULTISITE=0 RUN_CODE_COVERAGE=1
2014-09-01 06:03:52 +00:00
before_script:
2017-09-26 12:24:11 +00:00
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- bash tests/bin/install.sh woocommerce_test root '' localhost $WP_VERSION
- bash tests/bin/travis.sh before
2014-09-01 06:03:52 +00:00
2016-08-27 14:18:14 +00:00
script:
2017-10-05 16:09:39 +00:00
- bash tests/bin/phpunit.sh
2017-10-10 13:50:22 +00:00
- bash tests/bin/phpcs.sh
after_script:
- bash tests/bin/travis.sh after
# Specifies that Travis should create builds for master and release branches and also tags.
branches:
only:
- master
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
- /^release\//