We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2cd62 commit 8f883f9Copy full SHA for 8f883f9
1 file changed
.travis.yml
@@ -36,7 +36,7 @@ install:
36
- composer install
37
- |
38
if [[ $TRAVIS_PHP_VERSION == hhvm ]]; then
39
- composer require --dev "phpunit/phpunit:^5"
+ curl -sSfL -o ~/.phpenv/versions/hhvm/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
40
fi
41
# - |
42
# if [ ! -f "$HOME/mc-server/spigot-1.12.2.jar" ]; then
@@ -53,7 +53,13 @@ install:
53
54
script:
55
# - VOTIFIER_KEY=$(cat $HOME/mc-server/plugins/Votifier/rsa/public.key); ./phpunit
56
- - ./vendor/bin/phpunit
+ - |
57
+ if [[ $TRAVIS_PHP_VERSION == hhvm ]]; then
58
+ ~/.phpenv/versions/hhvm/bin/phpunit
59
+ else
60
+ ./vendor/bin/phpunit
61
+ fi
62
+ -
63
64
after_script:
65
0 commit comments