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