Skip to content

Commit 74236f5

Browse files
LuciferYangyhuang-db
authored andcommitted
[SPARK-52310][SQL][BUILD] Fix code change detection for pipelines module
### What changes were proposed in this pull request? This pr aims to fix code change detection for the `pipelines` module in GHA workflow scripts. ### Why are the changes needed? Without this change, the code update of the `pipelines` module won't trigger the corresponding CI jobs ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? - Pass GitHub Actions - modify source code under `pipelines` and produce a new git commit then run ``` APACHE_SPARK_REF="87b5d29ad0f3cdc7b87700a4756cee4760d65541" ./dev/is-changed.py -m "core,unsafe,kvstore,avro,utils,network-common,network-shuffle,repl,launcher,examples,sketch,variant,api,catalyst,hive-thriftserver,mllib-local,mllib,graphx,streaming,sql-kafka-0-10,streaming-kafka-0-10,streaming-kinesis-asl,kubernetes,hadoop-cloud,spark-ganglia-lgpl,profiler,protobuf,yarn,connect,sql,hive" false ``` ``` APACHE_SPARK_REF="87b5d29ad0f3cdc7b87700a4756cee4760d65541" ./dev/is-changed.py -m "core,unsafe,kvstore,avro,utils,network-common,network-shuffle,repl,launcher,examples,sketch,variant,api,catalyst,hive-thriftserver,mllib-local,mllib,graphx,streaming,sql-kafka-0-10,streaming-kafka-0-10,streaming-kinesis-asl,kubernetes,hadoop-cloud,spark-ganglia-lgpl,profiler,protobuf,yarn,connect,sql,hive,pipelines" true ``` ### Was this patch authored or co-authored using generative AI tooling? No Closes apache#51021 from LuciferYang/SPARK-52310. Authored-by: yangjie01 <yangjie01@baidu.com> Signed-off-by: yangjie01 <yangjie01@baidu.com>
1 parent 14dbc7d commit 74236f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
ui=false
113113
docs=false
114114
fi
115-
build=`./dev/is-changed.py -m "core,unsafe,kvstore,avro,utils,network-common,network-shuffle,repl,launcher,examples,sketch,variant,api,catalyst,hive-thriftserver,mllib-local,mllib,graphx,streaming,sql-kafka-0-10,streaming-kafka-0-10,streaming-kinesis-asl,kubernetes,hadoop-cloud,spark-ganglia-lgpl,profiler,protobuf,yarn,connect,sql,hive"`
115+
build=`./dev/is-changed.py -m "core,unsafe,kvstore,avro,utils,network-common,network-shuffle,repl,launcher,examples,sketch,variant,api,catalyst,hive-thriftserver,mllib-local,mllib,graphx,streaming,sql-kafka-0-10,streaming-kafka-0-10,streaming-kinesis-asl,kubernetes,hadoop-cloud,spark-ganglia-lgpl,profiler,protobuf,yarn,connect,sql,hive,pipelines"`
116116
precondition="
117117
{
118118
\"build\": \"$build\",

0 commit comments

Comments
 (0)