Changeset 10997 for trunk/.travis.yml
- Timestamp:
- 08/07/2016 01:47:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r10986 r10997 36 36 - php: 7.0 37 37 env: WP_VERSION=master BP_TRAVISCI=travis:grunt 38 - php: 7.0 39 env: WP_VERSION=master BP_TRAVISCI=travis:codecoverage 38 40 - php: hhvm 39 41 sudo: required … … 52 54 - php: nightly 53 55 - php: hhvm 56 - env: BP_TRAVISCI=travis:codecoverage WP_VERSION=master 54 57 55 58 # before_install: Failures in this section will result in build status 'errored' … … 63 66 - cd .. 64 67 - mv $plugin_slug $plugin_dir 68 # Disable xdebug if running codecoverage (use phpdbg instead). 69 - if [[ "$BP_TRAVISCI" == "travis:codecoverage" ]] ; then phpenv config-rm xdebug.ini; fi 65 70 # set up tests config 66 71 - cd $WP_DEVELOP_DIR … … 91 96 script: grunt $BP_TRAVISCI 92 97 98 +after_script: 99 - | 100 if [[ "$BP_TRAVISCI" == "travis:codecoverage" ]] ; then 101 bash <(curl -s https://codecov.io/bash) 102 fi 103 93 104 notifications: 94 105 email: false
Note: See TracChangeset
for help on using the changeset viewer.