Skip to content

Commit 88e0cf8

Browse files
committed
Bring back PHP 8.1 builds
Since we still technically support this in PM, we need to test it, and it seems not that difficult to do support for. I think we only dropped support because it was annoying to maintain so many branches, but with the new repo architecture that's no longer a problem.
1 parent 1d9cda6 commit 88e0cf8

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
strategy:
1818
matrix:
1919
include:
20+
- pm-version-major: 5
21+
php-version-base: "8.1"
2022
- pm-version-major: 5
2123
php-version-base: "8.2"
2224
special-release: default-latest #default = best for PM5, latest = display as latest on GitHub

compile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
PHP_VERSIONS=("8.2.29" "8.3.25" "8.4.12")
2+
PHP_VERSIONS=("8.1.33" "8.2.29" "8.3.25" "8.4.12")
33

44
#### NOTE: Tags with "v" prefixes behave weirdly in the GitHub API. They'll be stripped in some places but not others.
55
#### Use commit hashes to avoid this.

windows-compile-vs.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$ErrorActionPreference="Stop"
22
$ProgressPreference="SilentlyContinue"
33

4-
$PHP_VERSIONS=@("8.2.29", "8.3.25", "8.4.12")
4+
$PHP_VERSIONS=@("8.1.33", "8.2.29", "8.3.25", "8.4.12")
55

66
$PHP_SDK_VER="2.3.0"
77
$ARCH="x64"

0 commit comments

Comments
 (0)