From 2d3984c2b50ad86e2873cac4639c76561c8272d3 Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Sun, 25 Aug 2024 10:19:22 -0500 Subject: [PATCH] Sockets needed? I thought it was installed by default --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ebb507..70b3d8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,17 +11,17 @@ jobs: include: - operating-system: 'ubuntu-latest' php-version: '8.1' - extensions: uv + extensions: uv, sockets install-eio: true - operating-system: 'ubuntu-latest' php-version: '8.2' - extensions: uv + extensions: uv, sockets install-eio: true - operating-system: 'ubuntu-latest' php-version: '8.3' - extensions: uv + extensions: uv, sockets install-eio: true - operating-system: 'ubuntu-latest' @@ -77,7 +77,7 @@ jobs: ./configure make sudo make install - echo 'extension=eio.so' >> "$(php -r 'print php_ini_loaded_file();')" + echo 'extension=eio.so' >> "$(php -r 'echo php_ini_loaded_file();')" if: matrix.install-eio == true - name: Get Composer cache directory