Skip to content

Commit

Permalink
switch to cmd instead of bash for Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jxy-s committed Jun 10, 2024
1 parent 3461f97 commit d0e0c0a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

0 comments on commit d0e0c0a

Please sign in to comment.