You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
309 B
9 lines
309 B
#!/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=64 "$(dirname $0)"/kokoro/unix.sh
|
|
# Already ran tests the first time, so skip tests this time
|
|
SKIP_TESTS=true ARCH=32 "$(dirname $0)"/kokoro/unix.sh
|