From: William Lallemand Date: Mon, 3 Nov 2025 15:13:56 +0000 (+0100) Subject: CI: github: update to macos-26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c578ca31c92b9d03b72c9e5159f49b3d326864b;p=thirdparty%2Fhaproxy.git CI: github: update to macos-26 macOS-15 images seems to have difficulties to run the reg-tests since a few days for an unknown reason. Doing a rollback of both VTest2 and haporxy doesn't seem to fix the problem so this is probably related to a change in github actions. This patch switches the image to the new macos-26 images which seems to fix the problem. --- diff --git a/.github/matrix.py b/.github/matrix.py index e713afc37..9c9b966f6 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -280,7 +280,7 @@ def main(ref_name): if "haproxy-" in ref_name: os = "macos-13" # stable branch else: - os = "macos-15" # development branch + os = "macos-26" # development branch TARGET = "osx" for CC in ["clang"]: