wangyang0918 commented on code in PR #201:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/201#discussion_r871043170
##########
.github/workflows/ci.yml:
##########
@@ -42,8 +42,10 @@ jobs:
run: |
set -o pipefail; mvn clean install -Pgenerate-docs | tee ./mvn.log;
set +o pipefail
if [[ $(grep -c "overlapping classes" ./mvn.log) -gt 0 ]];then
Review Comment:
Maybe we could count the overlapping classes like following.
```
cat ./mvn.log | grep -E -v 'flink-runtime-.*.jar,
flink-kubernetes-operator-.*.jar define 2 overlapping classes' | grep -c
"overlapping classes" -
```
--
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]