2021-10-18 15:12:31 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
. .envrc
|
|
|
|
|
|
|
|
_build_and_file() {
|
2021-10-21 11:39:46 +03:00
|
|
|
file "$(bazel run --color=yes --curses=yes --run_under=echo "$@")" | \
|
2021-10-21 11:38:24 +03:00
|
|
|
tee /dev/stderr
|
2021-10-18 15:12:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
_test() {
|
|
|
|
local name=$1
|
|
|
|
local glob=$2
|
|
|
|
shift; shift;
|
|
|
|
>&2 echo "================================================================"
|
|
|
|
>&2 echo "Testing $name and looking for '$glob':"
|
|
|
|
>&2 echo " bazel build $* //test:hello"
|
|
|
|
>&2 echo
|
|
|
|
if _build_and_file "$@" //test:hello | grep -q "$glob"; then
|
|
|
|
>&2 echo "OK $name"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
>&2 echo "FAIL $name: glob does not match"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_test "Host" \
|
|
|
|
"ELF 64-bit.* x86-64.* dynamically linked"
|
|
|
|
|
2021-10-20 07:54:01 +03:00
|
|
|
_test "darwin_amd64" \
|
|
|
|
"Mach-O 64-bit x86_64 executable" \
|
|
|
|
--platforms @io_bazel_rules_go//go/toolchain:darwin_amd64_cgo
|
|
|
|
|
2021-12-13 03:33:24 +02:00
|
|
|
# hello world on darwin/arm64 requires OSX SDK via `zig cc --sysroot=<...>`.
|
|
|
|
# see https://github.com/ziglang/zig/issues/10299#issuecomment-989595215
|
|
|
|
#_test "darwin_arm64" \
|
|
|
|
# "Mach-O 64-bit arm64 executable" \
|
|
|
|
# --platforms @io_bazel_rules_go//go/toolchain:darwin_arm64_cgo
|
2021-10-20 07:54:01 +03:00
|
|
|
|
2021-10-18 15:12:31 +03:00
|
|
|
_test "linux_amd64_gnu" \
|
|
|
|
"ELF 64-bit.* x86-64.* dynamically linked" \
|
|
|
|
--platforms @io_bazel_rules_go//go/toolchain:linux_amd64_cgo
|
|
|
|
|
|
|
|
_test "linux_amd64_musl" \
|
|
|
|
"ELF 64-bit.* x86-64.* statically linked" \
|
|
|
|
--platforms @io_bazel_rules_go//go/toolchain:linux_amd64_cgo \
|
|
|
|
--extra_toolchains @zig_sdk//:linux_amd64_musl_toolchain
|
|
|
|
|
|
|
|
_test "linux_arm64_gnu" \
|
|
|
|
"ELF 64-bit.* ARM aarch64.* dynamically linked" \
|
|
|
|
--platforms @io_bazel_rules_go//go/toolchain:linux_arm64_cgo
|
|
|
|
|
|
|
|
_test "linux_arm64_musl" \
|
|
|
|
"ELF 64-bit.* ARM aarch64.* statically linked" \
|
|
|
|
--platforms @io_bazel_rules_go//go/toolchain:linux_arm64_cgo \
|
|
|
|
--extra_toolchains @zig_sdk//:linux_arm64_musl_toolchain
|