From: Ilya Shipitsin Date: Thu, 17 Oct 2024 21:02:40 +0000 (+0200) Subject: CI: bump development builds explicitely to Ubuntu 24.04 X-Git-Tag: v3.1-dev11~94 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=50cf89ad5c9441fb288c3d79d1a2d758311f26dc;p=thirdparty%2Fhaproxy.git CI: bump development builds explicitely to Ubuntu 24.04 Initially we agreed to split builds into "latest" for development branch and fixed 22.04 for stable branches. It got broken when "latest" label migrated from ubuntu-22 to ubuntu-24 ... because of build cache. Cache key is built using runner label, it was not prepared to use the same "latest" cache from ubuntu 22 on ubuntu 24. To make things clear, let's stick explicitely to ubuntu 24. --- diff --git a/.github/matrix.py b/.github/matrix.py index d1dcb796d9..fb467c3222 100755 --- a/.github/matrix.py +++ b/.github/matrix.py @@ -96,7 +96,7 @@ def main(ref_name): if "haproxy-" in ref_name: os = "ubuntu-22.04" # stable branch else: - os = "ubuntu-latest" # development branch + os = "ubuntu-24.04" # development branch TARGET = "linux-glibc" for CC in ["gcc", "clang"]: