buildscripts: allow per-xds test case artifacts (#6857)

This commit is contained in:
Eric Gribkoff 2020-03-26 10:13:05 -07:00 committed by GitHub
parent a2896051b8
commit e2bb44106a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -3,3 +3,9 @@
# Location of the continuous shell script in repository. # Location of the continuous shell script in repository.
build_file: "grpc-java/buildscripts/kokoro/xds.sh" build_file: "grpc-java/buildscripts/kokoro/xds.sh"
timeout_mins: 90 timeout_mins: 90
action {
define_artifacts {
regex: "**/*sponge_log.*"
regex: "github/grpc/reports/**"
}
}

View File

@ -17,7 +17,7 @@ shopt -u extglob
../gradlew installDist -x test -PskipCodegen=true -PskipAndroid=true ../gradlew installDist -x test -PskipCodegen=true -PskipAndroid=true
popd popd
git clone -b "${branch}" https://github.com/grpc/grpc.git git clone -b "${branch}" --single-branch --depth=1 https://github.com/grpc/grpc.git
grpc/tools/run_tests/helper_scripts/prep_xds.sh grpc/tools/run_tests/helper_scripts/prep_xds.sh
JAVA_OPTS=-Djava.util.logging.config.file=grpc-java/buildscripts/xds_logging.properties \ JAVA_OPTS=-Djava.util.logging.config.file=grpc-java/buildscripts/xds_logging.properties \