File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [ push, pull_request ]
5
5
jobs :
6
6
CI :
7
7
name : ${{ matrix.php }}
8
- runs-on : ubuntu-22 .04
8
+ runs-on : ubuntu-24 .04
9
9
strategy :
10
10
fail-fast : false
11
11
matrix :
@@ -15,21 +15,24 @@ jobs:
15
15
- php : ' 8.1'
16
16
- php : ' 8.2'
17
17
- php : ' 8.3'
18
+ - php : ' 8.3'
19
+ - php : ' 8.4'
18
20
19
21
steps :
20
22
- name : Setup PHP
21
23
uses : shivammathur/setup-php@v2
22
24
with :
23
25
php-version : ${{ matrix.php }}
24
- ini-values : zend.max_allowed_stack_size=-1
26
+ ini-values : zend.max_allowed_stack_size=-1,ffi.enable=true
27
+ extensions : ffi, exif
25
28
tools : composer:v2
26
29
coverage : none
27
30
28
31
- name : Checkout code
29
- uses : actions/checkout@v3
32
+ uses : actions/checkout@v4
30
33
31
34
- name : Install vips
32
- run : sudo apt install -y libvips --no-install-recommends
35
+ run : sudo apt install -y --no-install-recommends libvips
33
36
34
37
- name : Install composer dependencies
35
38
run : |
Original file line number Diff line number Diff line change 51
51
*/
52
52
class Exception extends \Exception
53
53
{
54
- public function __construct ($ message = "" , $ code = 0 , \Throwable $ previous = null )
54
+ public function __construct ($ message = "" , $ code = 0 , ? \Throwable $ previous = null )
55
55
{
56
56
if ($ message == "" ) {
57
57
$ message = "libvips error: " . FFI ::vips ()->vips_error_buffer ();
You can’t perform that action at this time.
0 commit comments