Skip to content

Commit

Permalink
Temporarily run tests without phing on HHVM
Browse files Browse the repository at this point in the history
Phing doesn't yet support HHVM, so run tests directly
in this environment. This can be reverted in future
once we can run phing (hhvm support is planned for
2.9.0).
  • Loading branch information
acoulton committed Aug 10, 2014
1 parent 99e0771 commit 81672b1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ before_install:
before_script:
- "composer install --prefer-dist"

script: "vendor/bin/phing test"
script:
# Standard build script
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]] ; then vendor/bin/phing test; fi
# HHVM script (phing not currently supported on hhvm pending http://www.phing.info/trac/ticket/1086)
- if [[ $TRAVIS_PHP_VERSION == "hhvm" ]] ; then ./vendor/bin/phpunit --bootstrap=modules/unittest/bootstrap_all_modules.php modules/unittest/tests.php ; fi

notifications:
irc:
Expand Down

0 comments on commit 81672b1

Please sign in to comment.