felixarntz/plugin-lib

View on GitHub
.travis.yml

Summary

Maintainability
Test Coverage
sudo: false
language: php
cache:
  directories:
    - node_modules
    - vendor
    - $HOME/.composer/cache
matrix:
  allow_failures:
    - php: hhvm
    - env: WP_VERSION=4.9 WP_TRAVIS_OBJECT_CACHE=true
  include:
    - php: 7.3
      env: WP_VERSION=master WP_MULTISITE=1 PHPLINT=1 PHPCS=1 COVERAGE=1
    - php: 7.2
      env: WP_VERSION=master WP_MULTISITE=1 PHPLINT=1 PHPCS=1 COVERAGE=1
    - php: 7.3
      env: WP_VERSION=5.2
    - php: 7.3
      env: WP_VERSION=5.1
    - php: 7.3
      env: WP_VERSION=5.0
    - php: 7.2
      env: WP_VERSION=5.2
    - php: 7.2
      env: WP_VERSION=5.1
    - php: 7.2
      env: WP_VERSION=5.0
    - php: 7.1
      env: WP_VERSION=5.2
    - php: 7.0
      env: WP_VERSION=5.2
    - php: 5.6
      env: WP_VERSION=5.2
    - php: 5.6
      env: WP_VERSION=5.2 WP_TRAVIS_OBJECT_CACHE=true
      services: memcached
before_install:
- |
  if [[ "$WP_TRAVIS_OBJECT_CACHE" == "true" ]]; then
    echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
  fi
before_script:
- |
  if [[ "$COVERAGE" != "1" ]]; then
    stable='^[0-9\.]+$'
    if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then
      phpenv config-rm xdebug.ini
    fi
  else
    curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
    chmod +x ./cc-test-reporter
    ./cc-test-reporter before-build
  fi
- composer selfupdate 1.0.0 --no-interaction
- composer install --dev --no-interaction
- npm install &>/dev/null
- PLUGIN_LIB_DIR=$(basename $(pwd))
- export WP_DEVELOP_DIR=/tmp/wordpress/
- git clone --depth=50 --branch="$WP_VERSION" git://develop.git.wordpress.org/ /tmp/wordpress
- cp -r "tests/phpunit/data/sample-plugin" "/tmp/wordpress/src/wp-content/plugins/sample-plugin"
- rm -rf "tests/phpunit/data/sample-plugin"
- cd ..
- mkdir -p "/tmp/wordpress/src/wp-content/plugins/sample-plugin/vendor/felixarntz"
- cp -r "$PLUGIN_LIB_DIR" "/tmp/wordpress/src/wp-content/plugins/sample-plugin/vendor/felixarntz/plugin-lib"
- cd /tmp/wordpress/
- |
  if [[ "$WP_TRAVIS_OBJECT_CACHE" == "true" ]]; then
    curl https://raw.githubusercontent.com/tollmanz/wordpress-pecl-memcached-object-cache/584392b56dc4adbe52bd2c7b86f875e23a3e5f75/object-cache.php > src/wp-content/object-cache.php
  fi
- 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
- mysql -e "CREATE DATABASE wordpress_tests;" -uroot
- cd "/tmp/wordpress/src/wp-content/plugins/sample-plugin/vendor/felixarntz/plugin-lib"
- phpenv rehash
script:
- |
  if [[ "$PHPLINT" == "1" ]]; then
    find -L .  -path ./vendor -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l
  fi
- |
  if [[ "$PHPCS" == "1" ]]; then
    vendor/bin/phpcs -vs --runtime-set ignore_warnings_on_exit 1
  fi
- |
  if [[ -z "$CODECLIMATE_REPO_TOKEN" ]]; then
    COVERAGE="0"
  fi
- |
  if [[ "$COVERAGE" == "1" ]]; then
    mkdir -p build/logs
    vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
  else
    vendor/bin/phpunit -c phpunit.xml
  fi
after_script:
- |
  if [[ "$COVERAGE" == "1" ]]; then
    ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
  fi
notifications:
  email: false