mirror of https://github.com/grpc/grpc-java.git
9 lines
317 B
Bash
Executable File
9 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
set -exu -o pipefail
|
|
|
|
# Runs all the tests and builds mvn artifacts.
|
|
# mvn artifacts are stored in grpc-java/mvn-artifacts/
|
|
ALL_ARTIFACTS=true ARCH=x86_64 "$(dirname $0)"/kokoro/unix.sh
|
|
# Already ran tests the first time, so skip tests this time
|
|
SKIP_TESTS=true ARCH=x86_32 "$(dirname $0)"/kokoro/unix.sh
|