This commit is contained in:
Jesse Houldsworth 2025-10-09 06:46:44 -07:00
parent 0bdb6f79a4
commit 00ed61ebb5
85 changed files with 3919 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
mvn -f java/pom.xml --batch-mode --also-make --projects serving test
TEST_EXIT_CODE=$?
# Default artifact location setting in Prow jobs
LOGS_ARTIFACT_PATH=/logs/artifacts
cp -r serving/target/surefire-reports ${LOGS_ARTIFACT_PATH}/surefire-reports
exit ${TEST_EXIT_CODE}