1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 02:17:54 +01:00
amp/travis/install-fiber.sh

11 lines
242 B
Bash
Raw Normal View History

2020-10-03 16:58:06 +02:00
#!/usr/bin/env bash
git clone https://github.com/amphp/ext-fiber \
&& pushd ext-fiber \
&& phpize \
&& ./configure \
&& make -j4 \
&& make install \
&& popd \
&& echo "extension=fiber.so" >> "$(php -r 'echo php_ini_loaded_file();')";