This is an automated email from the ASF dual-hosted git repository. yihua pushed a commit to branch release-0.14.1-spark35-scala213 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 2fc01e29cc223f9d2baba667a37bd0e4b8e96359 Author: vinoth chandar <[email protected]> AuthorDate: Thu Jan 11 10:38:31 2024 -0800 [MINOR] Turning on publishing of test results to Azure Devops (#10477) --- azure-pipelines-20230430.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/azure-pipelines-20230430.yml b/azure-pipelines-20230430.yml index ee5c016693a..8fcded07443 100644 --- a/azure-pipelines-20230430.yml +++ b/azure-pipelines-20230430.yml @@ -117,7 +117,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'clean install' options: $(MVN_OPTS_INSTALL) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' - task: Maven@4 displayName: UT common flink client/spark-client @@ -125,7 +126,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB1_MODULES),hudi-client/hudi-spark-client - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - task: Maven@4 @@ -134,7 +136,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Pfunctional-tests -pl $(JOB1_MODULES) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - script: | @@ -150,7 +153,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'clean install' options: $(MVN_OPTS_INSTALL) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' - task: Maven@4 displayName: FT client/spark-client @@ -158,7 +162,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Pfunctional-tests -pl $(JOB2_MODULES) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - script: | @@ -174,7 +179,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'clean install' options: $(MVN_OPTS_INSTALL) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' - task: Maven@4 displayName: UT spark-datasource @@ -182,7 +188,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB3_MODULES) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - script: | @@ -198,7 +205,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'clean install' options: $(MVN_OPTS_INSTALL) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' - task: Maven@4 displayName: UT other modules @@ -206,7 +214,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB4_UT_MODULES) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - task: Maven@4 @@ -215,7 +224,8 @@ stages: mavenPomFile: 'pom.xml' goals: 'test' options: $(MVN_OPTS_TEST) -Pfunctional-tests -pl $(JOB4_FT_MODULES) - publishJUnitResults: false + publishJUnitResults: true + testResultsFiles: '**/surefire-reports/TEST-*.xml' jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' - script: |
