Changeset 40546 for trunk/.travis.yml
- Timestamp:
- 04/24/2017 12:27:28 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.travis.yml
r40538 r40546 24 24 - php: 5.3 25 25 - php: 5.2 26 - php: hhvm27 sudo: required28 dist: trusty29 group: edge30 addons:31 apt:32 packages:33 - mysql-server-5.634 - mysql-client-core-5.635 - mysql-client-5.636 26 - php: nightly 37 27 allow_failures: 38 - php: hhvm39 28 - php: nightly 40 29 before_install: … … 55 44 before_script: 56 45 - | 57 # Remove Xdebug for a huge performance increase, but not from nightly or hhvm:46 # Remove Xdebug for a huge performance increase, but not from nightly: 58 47 stable='^[0-9\.]+$' 59 48 if [[ "$TRAVIS_PHP_VERSION" =~ $stable ]]; then … … 73 62 echo "Using PHPUnit 6.1" 74 63 composer global require "phpunit/phpunit=6.1.*" 75 ;;76 hhvm)77 echo "Using PHPUnit 5.7"78 composer global require "phpunit/phpunit=5.7.*"79 64 ;; 80 65 5.6|5.5|5.4|5.3) … … 101 86 - phpenv versions 102 87 - php --version 103 - | 104 # Debug PHP extensions, but not on HHVM because the command hangs indefinitely: 105 if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' ]]; then 106 php -m 107 fi 88 - php -m 108 89 - npm --version 109 90 - node --version
Note: See TracChangeset
for help on using the changeset viewer.