Skip to content

Commit

Permalink
remove php 8.3 from CI
Browse files Browse the repository at this point in the history
it's not working for some reason I don't understand
  • Loading branch information
jcupitt committed Feb 14, 2024
1 parent a2c7609 commit 90075e3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- php: '8.0'
- php: '8.1'
- php: '8.2'
- php: '8.3'

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

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

- 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: 1 addition & 2 deletions src/VipsOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,7 @@ 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 90075e3

Please sign in to comment.