Disable RBE on Windows

We no longer have a RBE pool with ltsc2019 image and are blocked on upgrading GKE to ltsc2022.

PiperOrigin-RevId: 730997201
This commit is contained in:
Nitin Srinivasan 2025-02-25 12:57:59 -08:00 committed by jax authors
parent 553b441fef
commit 2f6f722150

View File

@ -119,11 +119,11 @@ jobs:
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Enable RBE if building on Linux x86 or Windows x86
if: contains(inputs.runner, 'linux-x86') || contains(inputs.runner, 'windows-x86')
- name: Enable RBE if building on Linux x86
if: contains(inputs.runner, 'linux-x86')
run: echo "JAXCI_BUILD_ARTIFACT_WITH_RBE=1" >> $GITHUB_ENV
- name: Enable Bazel remote cache (with writes enabled) if building on Linux Aarch64
if: contains(inputs.runner, 'linux-arm64')
- name: Enable Bazel remote cache (with writes enabled) if building on Linux Aarch64 or Windows x86
if: contains(inputs.runner, 'linux-arm64') || contains(inputs.runner, 'windows-x86')
run: echo "JAXCI_WRITE_TO_BAZEL_REMOTE_CACHE=1" >> $GITHUB_ENV
# Halt for testing
- name: Wait For Connection