mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-11 12:31:11 +00:00
11 lines
294 B
Bash
11 lines
294 B
Bash
|
|
#!/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}
|