mirror of https://github.com/grpc/grpc-java.git
19 lines
535 B
Bash
Executable File
19 lines
535 B
Bash
Executable File
#!/bin/bash
|
|
set -veux -o pipefail
|
|
|
|
if [[ -f /VERSION ]]; then
|
|
cat /VERSION
|
|
fi
|
|
|
|
readonly GRPC_JAVA_DIR="$(cd "$(dirname "$0")"/../.. && pwd)"
|
|
|
|
# We had problems with random tests timing out because it took seconds to do
|
|
# trivial (ns) operations. The Kokoro Mac machines have 2 cores with 4 logical
|
|
# threads, so Gradle should be using 4 workers by default.
|
|
export GRADLE_FLAGS="${GRADLE_FLAGS:-} --max-workers=2"
|
|
|
|
. "$GRPC_JAVA_DIR"/buildscripts/kokoro/kokoro.sh
|
|
trap spongify_logs EXIT
|
|
|
|
"$GRPC_JAVA_DIR"/buildscripts/kokoro/unix.sh
|