From 26da0badc2e8a8a492ca2e1e32595f8c6758cffc Mon Sep 17 00:00:00 2001 From: Dongie Agnir Date: Fri, 7 Nov 2025 14:52:48 -0800 Subject: [PATCH] Remove echo command Remove the echo command as the last command in the build step so that CodeBuild uses the exit status of mvn as the result of the job. --- buildspecs/s3-regression-tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/buildspecs/s3-regression-tests.yml b/buildspecs/s3-regression-tests.yml index e030cc3a7098..06f307f756c4 100644 --- a/buildspecs/s3-regression-tests.yml +++ b/buildspecs/s3-regression-tests.yml @@ -12,7 +12,6 @@ phases: exit 0 fi mvn clean install -P s3-regression-tests -pl :s3-tests -am -T1C -Dregression.test="$REGRESSION_TEST" $MAVEN_OPTIONS - echo $MAVEN_OPTIONS finally: - mkdir -p codebuild-test-reports - find ./ -name 'TEST-*.xml' -type f -exec cp {} codebuild-test-reports/ \;