mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-25 21:52:21 +00:00
13 lines
238 B
Bash
Executable File
13 lines
238 B
Bash
Executable File
#!/bin/sh -eu
|
|
|
|
bazel \
|
|
--batch \
|
|
--output_base=$HOME/.cache/_grpc_gateway_bazel \
|
|
--host_jvm_args=-Xmx500m \
|
|
--host_jvm_args=-Xms500m \
|
|
test \
|
|
--local_resources=400,1,1.0 \
|
|
--test_output=errors \
|
|
--features=race \
|
|
//...
|