Add cross compiled interop servers

This commit is contained in:
Lucio Franco
2019-09-01 13:04:33 -04:00
parent 4861354d46
commit 85f7a72e22
6 changed files with 13 additions and 3 deletions
Binary file not shown.
Binary file not shown.
+7 -1
View File
@@ -3,7 +3,13 @@
set -eu
set -o pipefail
SERVER="tonic-interop/bin/darwin/server"
case "$OSTYPE" in
darwin*) OS="darwin" ;;
linux*) OS="linux" ;;
*) exit 2 ;;
esac
SERVER="tonic-interop/bin/server_${OS}_amd64"
# run the test server
./"${SERVER}" &