From 6e0f1e9469a07f6bef2346795eb54f4f1a1fda5d Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Fri, 27 Feb 2026 12:49:13 -0800 Subject: [PATCH] fix: disable Bazel builds in CI on ubuntu-24.04-arm until we can stabilize them (#13055) The other three Bazel builds have experienced low flakiness in my experience whereas I find myself re-running the `ubuntu-24.04-arm` jobs often to shake out the flakes. Disabling for now. --- .github/workflows/bazel.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 539e9cb8e0..64e831e5fd 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -28,14 +28,17 @@ jobs: target: x86_64-apple-darwin # Linux - - os: ubuntu-24.04-arm - target: aarch64-unknown-linux-gnu - os: ubuntu-24.04 target: x86_64-unknown-linux-gnu - - os: ubuntu-24.04-arm - target: aarch64-unknown-linux-musl - os: ubuntu-24.04 target: x86_64-unknown-linux-musl + # 2026-02-27 Bazel tests have been flaky on arm in CI. + # Disable until we can investigate and stabilize them. + # - os: ubuntu-24.04-arm + # target: aarch64-unknown-linux-musl + # - os: ubuntu-24.04-arm + # target: aarch64-unknown-linux-gnu + # TODO: Enable Windows once we fix the toolchain issues there. #- os: windows-latest # target: x86_64-pc-windows-gnullvm