We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e39cb3 commit f7658b2Copy full SHA for f7658b2
.github/workflows/stage.sh
@@ -54,16 +54,18 @@ function get_test_modules_for_stage() {
54
local modules_spark=$MODULES_SPARK
55
local modules_lake=$MODULES_LAKE
56
local negated_flink=\!${MODULES_FLINK//,/,\!}
57
+ local negated_spark=\!${MODULES_SPARK//,/,\!}
58
local negated_lake=\!${MODULES_LAKE//,/,\!}
- local modules_core="$negated_flink,$negated_lake"
59
+ local modules_core="$negated_flink,$negated_spark,$negated_lake"
60
61
case ${stage} in
62
(${STAGE_CORE})
63
echo "-pl $modules_core"
64
;;
65
(${STAGE_FLINK})
66
echo "-pl fluss-test-coverage,$modules_flink"
- (${STAGE_SPSARK})
67
+ ;;
68
+ (${STAGE_SPARK})
69
echo "-pl fluss-test-coverage,$modules_spark"
70
71
(${STAGE_LAKE})
0 commit comments