1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 05:11:42 +01:00

Remove now unnecessary phpenv rehash from .travis.yml

This commit is contained in:
Bob Weinand 2015-09-11 17:36:21 +02:00
parent 880c965fbd
commit fb8a993fcf

View File

@ -8,7 +8,6 @@ php:
- 7.0
before_script:
- phpenv rehash
- php -r 'exit((int) (PHP_MAJOR_VERSION < 7));' || (yes "" | pecl install "channel://pecl.php.net/libevent-0.1.0")
- php -r 'exit((int) (PHP_MAJOR_VERSION < 7));' || (yes "" | pecl install ev)
- php -r 'exit((int) (PHP_MAJOR_VERSION >= 7));' || (mkdir libuv && (curl -L https://github.com/libuv/libuv/archive/v1.6.1.tar.gz | tar xzf -) && cd libuv-1.6.1 && ./autogen.sh && ./configure --prefix=$(readlink -f `pwd`/../libuv) && make && make install && cd ..)