2021-10-18 15:12:31 +03:00
|
|
|
#!/bin/bash
|
|
|
|
set -euo pipefail
|
2022-02-03 22:38:43 +02:00
|
|
|
|
2021-10-18 15:12:31 +03:00
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
. .envrc
|
|
|
|
|
2022-02-03 18:01:32 +02:00
|
|
|
_run() {
|
2022-02-03 22:38:43 +02:00
|
|
|
>&2 echo
|
2022-02-03 18:01:32 +02:00
|
|
|
>&2 echo " $*"
|
2022-02-03 22:38:43 +02:00
|
|
|
>&2 echo
|
2022-02-03 18:01:32 +02:00
|
|
|
"$@"
|
|
|
|
}
|
|
|
|
|
2022-02-03 22:38:43 +02:00
|
|
|
while read -r action platform toolchain run_under; do
|
|
|
|
args=("$@")
|
|
|
|
if [[ $run_under != : ]]; then
|
|
|
|
args+=(--run_under="$run_under")
|
2021-10-18 15:12:31 +03:00
|
|
|
fi
|
2022-02-03 22:38:43 +02:00
|
|
|
args+=(--platforms "@zig_sdk//:${platform}_platform")
|
|
|
|
args+=(--extra_toolchains "@zig_sdk//:${toolchain}_toolchain")
|
|
|
|
args+=(//test/...)
|
|
|
|
_run bazel "$action" "${args[@]}"
|
|
|
|
done <<EOF
|
|
|
|
test linux_amd64 linux_amd64_gnu.2.19 :
|
|
|
|
test linux_amd64 linux_amd64_musl :
|
|
|
|
build linux_arm64 linux_arm64_musl :
|
|
|
|
build linux_arm64 linux_arm64_gnu.2.28 :
|
|
|
|
build darwin_amd64 darwin_amd64 :
|
|
|
|
EOF
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# works locally, fails on srht:
|
|
|
|
# test linux_arm64 linux_arm64_musl qemu-aarch64
|
|
|
|
#
|
|
|
|
# fails locally, qemu-aarch64 can't find the files in /usr
|
|
|
|
# test linux_arm64 linux_arm64_gnu.2.28 qemu-aarch64 -L /usr/aarch64-linux-gnu
|