Skip to content

Commit

Permalink
Update eio install
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Aug 25, 2024
1 parent 58c8efe commit 16405a9
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@ jobs:
include:
- operating-system: 'ubuntu-latest'
php-version: '8.1'
extensions: uv, eio
extensions: uv
install-eio: true

- operating-system: 'ubuntu-latest'
php-version: '8.2'
extensions: uv, eio
extensions: uv
install-eio: true

- operating-system: 'ubuntu-latest'
php-version: '8.3'
extensions: uv
style-fix: none
static-analysis: none
install-eio: true

- operating-system: 'ubuntu-latest'
php-version: '8.4'
Expand Down Expand Up @@ -67,6 +68,16 @@ 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
./configure
make
make install
if: matrix.install-eio == true

- name: Get Composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-dir)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 16405a9

Please sign in to comment.