maobaolong commented on PR #1878:
URL:
https://github.com/apache/incubator-uniffle/pull/1878#issuecomment-2217759808
@dingshun3016 We can introduce a check script to avoid non-relocated
packages.
Something like this:
```
function checkShaded {
SHADED_JAR_PATH=${1}
a = `unzip -l
rss-*/jars/client/spark*/rss-client-spark3-shaded-0.10.0-SNAPSHOT.jar | awk
'NR>3 {print $4}' | grep ".class" | grep -vE
'org/apache/uniffle|org/apache/spark/shuffle|META-INF|^$'| wc -l`
if [ -z "$a" ]; then
return 0
else
return 1
fi
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]