1
0

[HUDI-3667] Run unit tests of hudi-integ-tests in CI (#5078)

This commit is contained in:
Y Ethan Guo
2022-05-04 23:39:18 -07:00
committed by GitHub
parent 1562bb658f
commit f66e83dc65
9 changed files with 97 additions and 43 deletions

View File

@@ -150,6 +150,24 @@ stages:
displayName: IT modules
timeoutInMinutes: '120'
steps:
- task: Maven@3
displayName: maven install
inputs:
mavenPomFile: 'pom.xml'
goals: 'clean install'
options: -T 2.5C -Pintegration-tests -DskipTests
publishJUnitResults: false
jdkVersionOption: '1.8'
mavenOptions: '-Xmx4g $(MAVEN_OPTS)'
- task: Maven@3
displayName: UT integ-test
inputs:
mavenPomFile: 'pom.xml'
goals: 'test'
options: -Pintegration-tests -DskipUTs=false -DskipITs=true -pl hudi-integ-test test
publishJUnitResults: false
jdkVersionOption: '1.8'
mavenOptions: '-Xmx4g $(MAVEN_OPTS)'
- task: AzureCLI@2
displayName: Prepare for IT
inputs: