From 28855cc974e4cc90e9ebf6811c882cd9492e9d71 Mon Sep 17 00:00:00 2001 From: Johnny Shaw Date: Tue, 4 Jun 2024 13:05:10 -0600 Subject: [PATCH] disable Windows ARM64 CI pending bazelisk support --- .github/workflows/unit-tests.yaml | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index 48ceb7e..43ac3ad 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -65,17 +65,20 @@ jobs: - name: Build and Run Unit Tests run: bazel test --test_output=all //... shell: cmd - Windows-ARM64: - runs-on: archonite-windows-arm64 - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Setup Bazel - uses: bazel-contrib/setup-bazel@0.8.5 - with: - bazelisk-cache: true - disk-cache: ${{ github.workflow }} - repository-cache: true - - name: Build and Run Unit Tests - run: bazel test --test_output=all //... - shell: cmd + # Disabled until the following are resolved: + # https://github.com/bazel-contrib/setup-bazel/issues/25 + # https://github.com/bazelbuild/bazelisk/issues/572 + #Windows-ARM64: + # runs-on: archonite-windows-arm64 + # steps: + # - name: Checkout + # uses: actions/checkout@v4 + # - name: Setup Bazel + # uses: bazel-contrib/setup-bazel@0.8.5 + # with: + # bazelisk-cache: true + # disk-cache: ${{ github.workflow }} + # repository-cache: true + # - name: Build and Run Unit Tests + # run: bazel test --test_output=all //... + # shell: cmd