Skip to content

Commit 99d4098

Browse files
committed
Add conditional to correctly pass os value for windows
1 parent 3b61881 commit 99d4098

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ci/run_bazel_test.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ if [[ $JAXCI_RUN_BAZEL_TEST_CPU == 1 ]]; then
2222
os=$(uname -s | awk '{print tolower($0)}')
2323
arch=$(uname -m)
2424

25+
if [[ $os ~= "msys" ]]; then
26+
os="windows"
27+
fi
28+
2529
# If running on Mac or Linux Aarch64, we only build the test targets and
2630
# not run them. These platforms do not have native RBE support so we
2731
# cross-compile them on the Linux x86 RBE pool. As the tests still need

0 commit comments

Comments
 (0)