diff --git a/.github/workflows/compile-check.yml b/.github/workflows/compile-check.yml index b20e8edd999a..b60402663c2d 100644 --- a/.github/workflows/compile-check.yml +++ b/.github/workflows/compile-check.yml @@ -49,4 +49,6 @@ jobs: - name: Compiler Test shell: bash run: | - mvn clean compile -P with-integration-tests -ntp + # These modules resolve ZIP/test artifacts that are only attached in the package phase. + # Exclude them here because this job intentionally stops at compile. + mvn clean compile -P with-integration-tests -ntp -pl '!distribution,!integration-test' diff --git a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/historical/PipeHistoricalDataRegionTsFileSourceTest.java b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/historical/PipeHistoricalDataRegionTsFileSourceTest.java index 5e68a17ba8e0..12fa95a94082 100644 --- a/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/historical/PipeHistoricalDataRegionTsFileSourceTest.java +++ b/iotdb-core/datanode/src/test/java/org/apache/iotdb/db/pipe/source/dataregion/historical/PipeHistoricalDataRegionTsFileSourceTest.java @@ -210,6 +210,13 @@ private static TsFileResource createClosedTsFileResource( return resource; } + private static TsFileResource createTsFileResource(final File tempDir, final String fileName) + throws Exception { + final File file = new File(tempDir, fileName); + Assert.assertTrue(file.createNewFile()); + return new TsFileResource(file); + } + private static TsFileResource createClosedTsFileResourceWithDevices( final File tempDir, final String fileName, final String... devices) throws Exception { final TsFileResource resource = diff --git a/pom.xml b/pom.xml index 5d3e9140b0b1..f2859c7bce3e 100644 --- a/pom.xml +++ b/pom.xml @@ -27,6 +27,10 @@ jitpack.io https://jitpack.io + + tsfile-staging + https://repository.apache.org/content/repositories/orgapachetsfile-1041 + org.apache @@ -165,7 +169,7 @@ 0.23.0 1.9 1.5.6-3 - 1.1.4-260130-SNAPSHOT + 1.1.4