From e5caab14ca80cbcabde24ede8ee6206f3f699485 Mon Sep 17 00:00:00 2001 From: Manu Bretelle Date: Sun, 25 Aug 2024 10:36:49 +0100 Subject: [PATCH] DO NOT LAND: PR to test v2.319.1 s390x runners --- .github/scripts/matrix.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/scripts/matrix.py b/.github/scripts/matrix.py index c3390215..3b9e5e6e 100644 --- a/.github/scripts/matrix.py +++ b/.github/scripts/matrix.py @@ -72,6 +72,11 @@ class BuildConfig: @property def runs_on(self) -> List[str]: if is_managed_repo(): + if self.arch.value == "s390x": + tags = DEFAULT_SELF_HOSTED_RUNNER_TAGS + [self.arch.value, "docker-noble-staging"] + tags.remove("docker-noble-main") + return tags + return DEFAULT_SELF_HOSTED_RUNNER_TAGS + [self.arch.value] return [DEFAULT_RUNNER]