From ba0c10d06cb2396f320064120e6fc91431a0f6bc Mon Sep 17 00:00:00 2001 From: Aaron Piotrowski Date: Sun, 25 Aug 2024 10:21:32 -0500 Subject: [PATCH] Drop eio --- .github/workflows/ci.yml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70b3d8d..c97f39b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,18 +11,16 @@ jobs: include: - operating-system: 'ubuntu-latest' php-version: '8.1' - extensions: uv, sockets + extensions: uv, eio install-eio: true - operating-system: 'ubuntu-latest' php-version: '8.2' - extensions: uv, sockets - install-eio: true + extensions: uv - operating-system: 'ubuntu-latest' php-version: '8.3' - extensions: uv, sockets - install-eio: true + extensions: uv - operating-system: 'ubuntu-latest' php-version: '8.4' @@ -68,18 +66,6 @@ jobs: php-version: ${{ matrix.php-version }} extensions: ${{ matrix.extensions }} - - name: Install eio - run: | - git clone https://github.com/rosmanov/pecl-eio - cd pecl-eio - git checkout 3.1.3 - phpize - ./configure - make - sudo make install - echo 'extension=eio.so' >> "$(php -r 'echo php_ini_loaded_file();')" - if: matrix.install-eio == true - - name: Get Composer cache directory id: composer-cache run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT