Skip to content

Commit 0616ea9

Browse files
committed
fix
1 parent fde939b commit 0616ea9

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/utitcase-spark-3.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
distribution: 'temurin'
5555

5656
- name: Build Spark 3 with ${{ matrix.scala_version }}
57-
run: mvn -T 2C -B clean install -DskipTests -Pspark3,flink1,scala-${{ matrix.scala_version }}
57+
run: mvn -T 2C -B clean install -DskipTests -Pspark3,flink1,scala-${{ matrix.scala_version }}
5858

5959

6060
- name: Test Spark 3 with ${{ matrix.scala_version }}

.github/workflows/utitcase-spark-4.x.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
distribution: 'temurin'
5252

5353
- name: Build Spark
54-
run: mvn -T 2C -B clean install -DskipTests -Pspark4,flink1,paimon-lucene
54+
run: mvn -T 2C -B clean install -DskipTests -Pspark4,flink1,paimon-lucene
5555

5656

5757
- name: Test Spark

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ paimon-python/*.egg-info/
2626
paimon-python/dev/log
2727
paimon-lucene/.idea/
2828

29+
### Native build artifacts ###
30+
paimon-faiss-jni/build/
31+
2932
### VS Code ###
3033
.vscode/
3134

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -633,6 +633,8 @@ under the License.
633633
<!-- antlr grammar files -->
634634
<exclude>paimon-common/src/main/antlr4/**</exclude>
635635
<exclude>paimon-core/src/test/resources/compatibility/**</exclude>
636+
<!-- CMake build artifacts for native libraries -->
637+
<exclude>paimon-faiss-jni/build/**</exclude>
636638
</excludes>
637639
</configuration>
638640
</plugin>

0 commit comments

Comments
 (0)