Browse Source

[CI] avoid PHP 8.5 for now (#12416)

Rudy Ges 2 weeks ago
parent
commit
54d7c0c75b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tests/runci/targets/Php.hx

+ 2 - 1
tests/runci/targets/Php.hx

@@ -58,7 +58,8 @@ class Php {
 			case "Linux":
 				Linux.requireAptPackages(["php-cli", "php-mbstring", "php-sqlite3"]);
 			case "Mac":
-				runNetworkCommand("brew", ["install", "php"]);
+				runNetworkCommand("brew", ["install", "[email protected]"]);
+				runCommand("brew", ["link", "--overwrite", "--force", "[email protected]"]);
 			case "Windows":
 				runNetworkCommand("cinst", ["php", "-version", "7.1.8", "-y"]);
 			case _: