Skip to content

Commit 7516835

Browse files
committed
Disable the running of conformance tests in the GitHub Actions CI workflow
on Windows.
1 parent a0d60f4 commit 7516835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/build_all

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ if [ -n "$RUNNER_OS" ]; then
352352
;;
353353
esac
354354
echo "ARM architecture: $is_arm"
355-
if [ "$is_arm" -ne 0 ]; then
355+
if [ "$os" = "windows" -o "$is_arm" -ne 0 ]; then
356356
echo "WARNING: disabling conformance tests"
357357
enable_conformance_test=0
358358
fi

0 commit comments

Comments
 (0)