You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warn when INCLUDE_SPARK_PROTOBUF_JAR=true but jars are missing
Surface a stderr warning when the variable is explicitly requested but
the spark-protobuf/protobuf-java jars are not present, so a CI
misconfiguration is not masked as a silent skip. Default opt-out
(unset or false) stays silent.
Addresses greptile review feedback on #14885.
Signed-off-by: Haoyang Li <haoyangl@nvidia.com>
if [[ "$INCLUDE_SPARK_PROTOBUF_JAR_REQUESTED"=="true" ]];then
160
+
>&2echo"WARNING: INCLUDE_SPARK_PROTOBUF_JAR=true was requested but spark-protobuf/protobuf-java jars were not found under $TARGET_DIR/dependency; disabling protobuf tests."
0 commit comments