From d0e0c0af96af9b204e02e2d4475a007b85254734 Mon Sep 17 00:00:00 2001 From: Johnny Shaw Date: Tue, 4 Jun 2024 12:54:36 -0600 Subject: [PATCH] switch to cmd instead of bash for Windows CI --- .github/workflows/unit-tests.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/unit-tests.yaml b/.github/workflows/unit-tests.yaml index faaecad..48ceb7e 100644 --- a/.github/workflows/unit-tests.yaml +++ b/.github/workflows/unit-tests.yaml @@ -63,9 +63,8 @@ jobs: disk-cache: ${{ github.workflow }} repository-cache: true - name: Build and Run Unit Tests - # extra slash is an intentional hack, powershell converts a // to / - run: bazel test --test_output=all ///... - shell: bash + run: bazel test --test_output=all //... + shell: cmd Windows-ARM64: runs-on: archonite-windows-arm64 steps: @@ -78,6 +77,5 @@ jobs: disk-cache: ${{ github.workflow }} repository-cache: true - name: Build and Run Unit Tests - # extra slash is an intentional hack, powershell converts a // to / - run: bazel test --test_output=all ///... - shell: bash + run: bazel test --test_output=all //... + shell: cmd