diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b2d781cd2632..cb9787bb3f93 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,6 +27,8 @@ parameters: default: - 'hudi-common' - 'hudi-flink-datasource/hudi-flink' + - 'hudi-flink-datasource/hudi-flink1.13.x' + - 'hudi-flink-datasource/hudi-flink1.14.x' - name: job2Modules type: object default: @@ -71,7 +73,7 @@ parameters: variables: BUILD_PROFILES: '-Dscala-2.11 -Dspark2.4 -Dflink1.14' - PLUGIN_OPTS: '-Dcheckstyle.skip=true -Drat.skip=true -Djacoco.skip=true -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn -DreuseForks=false' + PLUGIN_OPTS: '-Dcheckstyle.skip=true -Drat.skip=true -Djacoco.skip=true -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn' MVN_OPTS_INSTALL: '-DskipTests $(BUILD_PROFILES) $(PLUGIN_OPTS)' MVN_OPTS_TEST: '-fae -Pwarn-log $(BUILD_PROFILES) $(PLUGIN_OPTS)' SPARK_VERSION: '2.4.4' @@ -102,7 +104,7 @@ stages: inputs: mavenPomFile: 'pom.xml' goals: 'test' - options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB1_MODULES) + options: $(MVN_OPTS_TEST) -Punit-tests -pl $(JOB1_MODULES),hudi-client/hudi-spark-client publishJUnitResults: false jdkVersionOption: '1.8' mavenOptions: '-Xmx4g' @@ -119,7 +121,6 @@ stages: grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100 displayName: Top 100 long-running testcases - job: UT_FT_2 - condition: false displayName: FT client/spark-client timeoutInMinutes: '150' steps: @@ -144,7 +145,6 @@ stages: grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100 displayName: Top 100 long-running testcases - job: UT_FT_3 - condition: false displayName: UT FT clients & cli & utilities & sync timeoutInMinutes: '150' steps: @@ -178,7 +178,6 @@ stages: grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100 displayName: Top 100 long-running testcases - job: UT_FT_4 - condition: false displayName: UT FT other modules timeoutInMinutes: '150' steps: @@ -212,7 +211,6 @@ stages: grep "testcase" */target/surefire-reports/*.xml */*/target/surefire-reports/*.xml | awk -F'"' ' { print $6,$4,$2 } ' | sort -nr | head -n 100 displayName: Top 100 long-running testcases - job: IT - condition: false displayName: IT modules timeoutInMinutes: '150' steps: diff --git a/hudi-common/src/test/java/org/apache/hudi/common/table/view/TestRocksDBBasedIncrementalFSViewSync.java b/hudi-common/src/test/java/org/apache/hudi/common/table/view/TestRocksDBBasedIncrementalFSViewSync.java index c350604c4f26..082277e71c96 100644 --- a/hudi-common/src/test/java/org/apache/hudi/common/table/view/TestRocksDBBasedIncrementalFSViewSync.java +++ b/hudi-common/src/test/java/org/apache/hudi/common/table/view/TestRocksDBBasedIncrementalFSViewSync.java @@ -21,15 +21,12 @@ import org.apache.hudi.common.table.HoodieTableMetaClient; import org.apache.hudi.common.table.timeline.HoodieTimeline; -import org.junit.jupiter.api.Disabled; - import java.io.IOException; import java.nio.file.Files; /** * Tests rocks db based incremental file system view sync {@link RocksDbBasedFileSystemView}. */ -@Disabled public class TestRocksDBBasedIncrementalFSViewSync extends TestIncrementalFSViewSync { @Override