Skip to content

Commit 02a4b91

Browse files
committed
Add com_dotnet extension
1 parent 0cfa203 commit 02a4b91

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

config/ext.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,14 @@
1313
"openssl"
1414
]
1515
},
16+
"com_dotnet": {
17+
"support": {
18+
"BSD": "no",
19+
"Linux": "no",
20+
"Darwin": "no"
21+
},
22+
"type": "builtin"
23+
},
1624
"apcu": {
1725
"type": "external",
1826
"source": "apcu"

src/globals/test-extensions.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// test php version (8.1 ~ 8.4 available, multiple for matrix)
1515
$test_php_version = [
16-
// '8.1',
16+
'8.1',
1717
'8.2',
1818
'8.3',
1919
'8.4',
@@ -23,15 +23,15 @@
2323

2424
// test os (macos-15-intel, macos-15, ubuntu-latest, windows-latest are available)
2525
$test_os = [
26-
'macos-15-intel', // bin/spc for x86_64
27-
'macos-15', // bin/spc for arm64
28-
'ubuntu-latest', // bin/spc-alpine-docker for x86_64
29-
'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
30-
'ubuntu-24.04', // bin/spc for x86_64
26+
// 'macos-15-intel', // bin/spc for x86_64
27+
// 'macos-15', // bin/spc for arm64
28+
// 'ubuntu-latest', // bin/spc-alpine-docker for x86_64
29+
// 'ubuntu-22.04', // bin/spc-gnu-docker for x86_64
30+
// 'ubuntu-24.04', // bin/spc for x86_64
3131
// 'ubuntu-22.04-arm', // bin/spc-gnu-docker for arm64
3232
// 'ubuntu-24.04-arm', // bin/spc for arm64
3333
// 'windows-2022', // .\bin\spc.ps1
34-
// 'windows-2025',
34+
'windows-2025',
3535
];
3636

3737
// whether enable thread safe
@@ -51,7 +51,7 @@
5151
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5252
$extensions = match (PHP_OS_FAMILY) {
5353
'Linux', 'Darwin' => 'mysqli,gmp',
54-
'Windows' => 'bcmath',
54+
'Windows' => 'com_dotnet',
5555
};
5656

5757
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).

0 commit comments

Comments
 (0)