Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/compile-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
6 changes: 5 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>tsfile-staging</id>
<url>https://repository.apache.org/content/repositories/orgapachetsfile-1041</url>
</repository>
</repositories>
<parent>
<groupId>org.apache</groupId>
Expand Down Expand Up @@ -165,7 +169,7 @@
<thrift.version>0.23.0</thrift.version>
<xz.version>1.9</xz.version>
<zstd-jni.version>1.5.6-3</zstd-jni.version>
<tsfile.version>1.1.4-260130-SNAPSHOT</tsfile.version>
<tsfile.version>1.1.4</tsfile.version>
</properties>
<!--
if we claim dependencies in dependencyManagement, then we do not claim
Expand Down
Loading