From 93032aba5c84a708573c2928d45ee6618fa83386 Mon Sep 17 00:00:00 2001
From: "Austin S. Hemmelgarn" <austin@netdata.cloud>
Date: Tue, 11 Feb 2025 20:58:17 -0500
Subject: [PATCH] Switch to Ubuntu 22.04 runner images for CI build jobs.
 (#19619)

The 24.04 runner images are apparently having serious stability issues,
especially for ARM runners, and these are likely causing most of our
current CI issues.
---
 .github/data/distros.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.github/data/distros.yml b/.github/data/distros.yml
index 18afb55897..a3c2208480 100644
--- a/.github/data/distros.yml
+++ b/.github/data/distros.yml
@@ -25,22 +25,22 @@ arch_order:  # sort order for per-architecture jobs in CI
 arch_data:  # Mapping of per-architecture matrix behavior.
   amd64: &amd64
     qemu: false
-    runner: ubuntu-24.04
+    runner: &x86-runner ubuntu-22.04
   x86_64: *amd64
   i386: *amd64
   armhf: &arm
     qemu: false
-    runner: ubuntu-24.04-arm
+    runner: &arm-runner ubuntu-22.04-arm
   armhfp: *arm
   armv6l: *arm
   armv7l: *arm
   arm64: &arm64
     qemu: false
-    runner: ubuntu-24.04-arm
+    runner: *arm-runner
   aarch64: *arm64
   ppc64le:
     qemu: true
-    runner: ubuntu-24.04-arm
+    runner: *arm-runner
 static_arches:  # Static build architectures
   - x86_64
   - armv6l