14 lines
388 B
Bash
Executable File
14 lines
388 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
bazel test ...
|
|
|
|
# Windows tests
|
|
# Unfortunately wine-binfmt breaks within the bazel sandbox, so we disable it
|
|
# to run this test.
|
|
bazel test //test/c:winver_windows_amd64 \
|
|
--spawn_strategy=standalone
|
|
# There is no no easy way to run windows_arm64 binaries on Linux, so we just
|
|
# cross compile one for testing.
|
|
bazel build //test/c:winver_windows_arm64
|