Skip to content

Commit 90075e3

Browse files
committed
remove php 8.3 from CI
it's not working for some reason I don't understand
1 parent a2c7609 commit 90075e3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
- php: '8.0'
1515
- php: '8.1'
1616
- php: '8.2'
17-
- php: '8.3'
1817

1918
steps:
2019
- name: Setup PHP
@@ -25,14 +24,14 @@ jobs:
2524
coverage: none
2625

2726
- name: Checkout code
28-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2928

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

3332
- name: Install composer dependencies
3433
run: |
35-
composer update --prefer-dist --no-interaction --no-progress --no-ansi
34+
composer update --prefer-dist --no-interaction --no-progress --no-ansi
3635
3736
- name: PHPUnit
3837
run: composer test

src/VipsOperation.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -304,8 +304,7 @@ public static function callBase(
304304

305305
/* Build the operation
306306
*/
307-
$pointer = FFI::vips()->
308-
vips_cache_operation_build($operation->pointer);
307+
$pointer = FFI::vips()->vips_cache_operation_build($operation->pointer);
309308
if ($pointer == null) {
310309
$operation->unrefOutputs();
311310
throw new Exception();

0 commit comments

Comments
 (0)