Skip to content

Commit

Permalink
Support building for PHP 8.4.0 (#6)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cmb69 authored Jul 25, 2024
1 parent 14f764c commit effb4eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ for building and testing PHP extensions on Windows.
## Inputs

- `version`: the PHP version to build for
(`7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2` or `8.3`)
(`7.0`, `7.1`, `7.2`, `7.3`, `7.4`, `8.0`, `8.1`, `8.2`, `8.3`, or `8.4`)
- `arch`: the architecture to build for (`x64` or `x86`)
- `ts`: thread-safety (`nts` or `ts`)
- `deps`: dependency libraries to install; for now, only
Expand Down
1 change: 1 addition & 0 deletions run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ $versions = @{
"8.1" = "vs16"
"8.2" = "vs16"
"8.3" = "vs16"
"8.4" = "vs17"
}
$vs = $versions.$version
if (-not $vs) {
Expand Down

0 comments on commit effb4eb

Please sign in to comment.