Skip to content

Commit b9e8984

Browse files
committed
try different test naming scheme
1 parent 5ba51f4 commit b9e8984

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

buildscripts/kokoro/xds-k8s.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ build_file: "grpc-java/buildscripts/kokoro/xds-k8s.sh"
55
timeout_mins: 90
66
action {
77
define_artifacts {
8-
regex: "artifacts/*sponge_log.xml"
9-
regex: "artifacts/*sponge_log.log"
8+
regex: "artifacts/**/*sponge_log.xml"
9+
regex: "artifacts/**/*sponge_log.log"
1010
strip_prefix: "artifacts"
1111
}
1212
}

buildscripts/kokoro/xds-k8s.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ set -x
2424
# Script start
2525
echo "xDS interop tests on GKE"
2626
GITHUB_DIR="${KOKORO_ARTIFACTS_DIR}/github"
27-
ARTIFACTS_DIR="${KOKORO_ARTIFACTS_DIR}/artifacts"
27+
ARTIFACTS_DIR="${KOKORO_ARTIFACTS_DIR}/artifacts/github/grpc-java/xds-k8s"
2828
RUNNER_SKIP_BUILD="${RUNNER_SKIP_BUILD:-0}"
29-
mkdir -p "${ARTIFACTS_DIR}"
3029

3130
# Language-specific repo
3231
SRC_DIR="${GITHUB_DIR}/grpc-java"
@@ -105,7 +104,9 @@ kubectl config rename-context "$(kubectl config current-context)" grpc-testing-s
105104
#--project=grpc-testing \
106105
#--network=default-vpc \
107106
echo "Running tests"
107+
mkdir -p "${ARTIFACTS_DIR}"
108+
mkdir -p "${ARTIFACTS_DIR}/baseline_test"
108109
cd "${RUNNER_DIR}"
109110
python -m tests.baseline_test \
110111
-v 0 --logger_levels=infrastructure:DEBUG,__main__:DEBUG \
111-
--xml_output_file="${ARTIFACTS_DIR}/sponge_log.xml"
112+
--xml_output_file="${ARTIFACTS_DIR}/baseline_test/sponge_log.xml"

0 commit comments

Comments
 (0)