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 2d699e3 commit 1bcbcdeCopy full SHA for 1bcbcde
.travis.yml
@@ -120,7 +120,8 @@ before_install:
120
# php.ini configuration
121
(
122
for PHP in $TRAVIS_PHP_VERSION $php_extra; do
123
- (cd / && wget https://storage.googleapis.com/travis-ci-language-archives/php/binaries/ubuntu/18.04/x86_64/php-$PHP.tar.bz2 -O - | tar -xj) &
+ # Original builds at https://storage.googleapis.com/travis-ci-language-archives/php/binaries/ubuntu/18.04/x86_64/php-$PHP.tar.bz2
124
+ ([[ $PHP != 7.4 ]] && phpenv global $PHP 2>/dev/null) || (cd / && wget https://github.com/symfony/binary-utils/releases/download/v0.1/php-$PHP.tar.bz2 -O - | tar -xj) &
125
done
126
wait
127
)
0 commit comments