From 7ca4f5e4d8c5c0ef71736dbe15f3b9ba650dce29 Mon Sep 17 00:00:00 2001 From: Alex Rodionov Date: Thu, 25 Apr 2024 17:55:44 -0700 Subject: [PATCH] [ci] Don't run on macOS ARM We have few failures related to it that needs to be fixed first. --- .github/workflows/bazel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index d2be4c7bd50ee..2c6a5a43381a4 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -70,7 +70,7 @@ on: jobs: bazel: name: ${{ inputs.name }} - runs-on: ${{ inputs.os }}-latest + runs-on: ${{ inputs.os == 'macos' && 'macos-13' || format('{0}-latest', inputs.os) }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SEL_M2_USER: ${{ secrets.SEL_M2_USER }}