From 61c0555a475f803b75c4bb586163113d78baeb3b Mon Sep 17 00:00:00 2001 From: Simon Frings Date: Fri, 1 Sep 2023 14:59:46 +0200 Subject: [PATCH] Install uv-extension in v0.2.4 for PHP 7.x in test matrix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a12e827b..b64225a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,7 +67,7 @@ jobs: - name: Install ext-uv on PHP 7.x run: | sudo add-apt-repository ppa:ondrej/php -y && sudo apt-get update -q && sudo apt-get install libuv1-dev - echo "yes" | sudo pecl install uv-beta + echo "yes" | sudo pecl install uv-0.2.4 echo "extension=uv.so" >> "$(php -r 'echo php_ini_loaded_file();')" if: ${{ matrix.php >= 7.0 && matrix.php < 8.0 }} - name: Install legacy ext-libevent on PHP < 7.0