Skip to content

Commit 4901465

Browse files
committed
update
1 parent ca14a09 commit 4901465

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci-template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
strategy:
3737
fail-fast: false
3838
matrix:
39-
module: [ core, flink, spark, lake ]
39+
module: [ core, flink, spark3, lake ]
4040
name: "${{ matrix.module }}"
4141
steps:
4242
- name: Checkout code

.github/workflows/stage.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
STAGE_CORE="core"
2121
STAGE_FLINK="flink"
22-
STAGE_SPARK="spark"
22+
STAGE_SPARK="spark3"
2323
STAGE_LAKE="lake"
2424

2525
MODULES_FLINK="\
@@ -29,7 +29,7 @@ fluss-flink/fluss-flink-2.1,\
2929
fluss-flink/fluss-flink-1.20,\
3030
"
3131

32-
MODULES_SPARK="\
32+
MODULES_SPARK3="\
3333
fluss-spark,\
3434
fluss-spark/fluss-spark-common,\
3535
fluss-spark/fluss-spark-ut,\
@@ -51,10 +51,10 @@ function get_test_modules_for_stage() {
5151
local stage=$1
5252

5353
local modules_flink=$MODULES_FLINK
54-
local modules_spark=$MODULES_SPARK
54+
local modules_spark3=$MODULES_SPARK3
5555
local modules_lake=$MODULES_LAKE
5656
local negated_flink=\!${MODULES_FLINK//,/,\!}
57-
local negated_spark=\!${MODULES_SPARK//,/,\!}
57+
local negated_spark=\!${MODULES_SPARK3//,/,\!}
5858
local negated_lake=\!${MODULES_LAKE//,/,\!}
5959
local modules_core="$negated_flink,$negated_spark,$negated_lake"
6060

@@ -66,7 +66,7 @@ function get_test_modules_for_stage() {
6666
echo "-pl fluss-test-coverage,$modules_flink"
6767
;;
6868
(${STAGE_SPARK})
69-
echo "-pl fluss-test-coverage,$modules_spark"
69+
echo "-Pspark3 -pl fluss-test-coverage,$modules_spark3"
7070
;;
7171
(${STAGE_LAKE})
7272
echo "-pl fluss-test-coverage,$modules_lake"

fluss-test-coverage/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
</profile>
181181

182182
<profile>
183-
<id>test-spark</id>
183+
<id>test-spark3</id>
184184
<build>
185185
<plugins>
186186
<!-- required by jacoco for the goal: check to work -->
@@ -326,6 +326,8 @@
326326
</limit>
327327
</limits>
328328
<excludes>
329+
<exclude>org.apache.fluss.spark.*</exclude>
330+
<exclude>org.apache.spark.sql.*</exclude>
329331
<exclude>org.apache.fluss.protogen.*</exclude>
330332
<exclude>org.apache.fluss.memory.*</exclude>
331333
<exclude>org.apache.fluss.utils.*</exclude>

0 commit comments

Comments
 (0)