Skip to content

Commit

Permalink
Revert "remove php 8.3 from CI"
Browse files Browse the repository at this point in the history
This reverts commit 90075e3.
  • Loading branch information
jcupitt committed Feb 14, 2024
1 parent 90075e3 commit 50cb534
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- php: '8.0'
- php: '8.1'
- php: '8.2'
- php: '8.3'

steps:
- name: Setup PHP
Expand All @@ -24,14 +25,14 @@ jobs:
coverage: none

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Install vips
run: sudo apt install -y libvips --no-install-recommends

- name: Install composer dependencies
run: |
composer update --prefer-dist --no-interaction --no-progress --no-ansi
composer update --prefer-dist --no-interaction --no-progress --no-ansi
- name: PHPUnit
run: composer test
3 changes: 2 additions & 1 deletion src/VipsOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ public static function callBase(

/* Build the operation
*/
$pointer = FFI::vips()->vips_cache_operation_build($operation->pointer);
$pointer = FFI::vips()->
vips_cache_operation_build($operation->pointer);
if ($pointer == null) {
$operation->unrefOutputs();
throw new Exception();
Expand Down

0 comments on commit 50cb534

Please sign in to comment.