Skip to content

Commit effb4eb

Browse files
authored
Support building for PHP 8.4.0 (#6)
Since alpha pre-releases are already available, it seems to be prudent to offer clients the ability to test their extensions for PHP 8.4 in CI.
1 parent 14f764c commit effb4eb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ for building and testing PHP extensions on Windows.
2525
## Inputs
2626

2727
- `version`: the PHP version to build for
28-
(`7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2` or `8.3`)
28+
(`7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, or `8.4`)
2929
- `arch`: the architecture to build for (`x64` or `x86`)
3030
- `ts`: thread-safety (`nts` or `ts`)
3131
- `deps`: dependency libraries to install; for now, only

run.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ $versions = @{
1717
"8.1" = "vs16"
1818
"8.2" = "vs16"
1919
"8.3" = "vs16"
20+
"8.4" = "vs17"
2021
}
2122
$vs = $versions.$version
2223
if (-not $vs) {

0 commit comments

Comments
 (0)