woocommerce/plugins/woocommerce-admin/.travis.yml

68 lines
2.0 KiB
YAML
Raw Normal View History

2018-09-24 16:25:06 +00:00
sudo: required
2018-09-21 13:06:16 +00:00
language: php
2019-06-12 17:46:08 +00:00
dist: trusty
matrix:
include:
- name: "PHP 7.2 unit tests, PHP Coding standards check and JS tests"
php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress RUN_PHPCS=1 RUN_JS=1
- name: "PHP 7.2 unit tests, run in random order"
php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress RUN_RANDOM=1
- name: "PHP 7.1 unit tests"
php: 7.1
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
- name: "PHP 7.0 unit tests"
php: 7.0
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
- name: "PHP 5.6 unit tests"
php: 5.6
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress
allow_failures:
php: 7.2
env: WP_VERSION=latest WP_MULTISITE=0 WP_CORE_DIR=/tmp/wordpress RUN_RANDOM=1
before_install:
- nvm install 'lts/*'
2018-09-21 13:16:53 +00:00
2018-09-21 13:06:16 +00:00
before_script:
- phpenv config-rm xdebug.ini
- export PATH="$WP_CORE_DIR/wp-content/plugins/woocommerce-admin/vendor/bin:$PATH"
2018-09-21 13:06:16 +00:00
- bash bin/install-wp-tests.sh wc_admin_test root '' localhost $WP_VERSION
- bash bin/travis.sh before
- node --version
- npm --version
- timedatectl
2018-09-24 16:25:06 +00:00
2018-04-17 21:03:14 +00:00
script:
- bash bin/js_lint_test.sh
2018-09-21 13:06:16 +00:00
- bash bin/phpunit.sh
- bash bin/phpcs.sh
branches:
only:
- master
before_deploy:
# Remove our unneeded symlink.
- rm docs/components/packages
# Copy each component README to the docs folder.
- find packages/components/src -type f -name 'README.md' | sed 's/\(packages\/components\/src\/\)\(.*\)README\.md/docs\/components\/packages\/\2/g' | xargs mkdir -p
- find packages/components/src -type f -name 'README.md' | sed 's/\(packages\/components\/src\/\)\(.*\)\(README\.md\)/\1\2\3 docs\/components\/packages\/\2/g' | xargs -n2 cp
deploy:
local_dir: docs
provider: pages
skip_cleanup: true
github_token: $GH_PAGES_TOKEN
keep_history: true
on:
condition: $RUN_JS == 1 # only deploy on the PHP 7.2/JS build
branch: master
target_branch: gh-pages
verbose: true