dejan2609 commented on PR #22973: URL: https://github.com/apache/kafka/pull/22973#issuecomment-5104475759
Build results (testing in a loop for a 700 times): :white_check_mark: ``` BUILD SUCCESSFUL in 4s 207 actionable tasks: 207 executed Consider enabling configuration cache to speed up this build: https://docs.gradle.org/9.4.1/userguide/configuration_cache_enabling.html ************************************************************************** ### Build succeeded (execution number: 701) -->> running again... ### ************************************************************************** > Configure project : Starting build with version 4.4.0-SNAPSHOT (commit id 157bbd19) using Gradle 9.4.1, Java 25 and Scala 2.13.18 Build properties: ignoreFailures=false, maxParallelForks=8, maxScalacThreads=8, maxTestRetries=0 │███████████████│ 100% CONFIGURING [1s] > IDLE ^C>>> Build failed on execution number: 702 at Tue 28 Jul 14:43:45 CEST 2026 <<< dejan@dejan:~/kafka$ cat repeatUntilBuildFails.sh #!/bin/bash counter=0 while ./gradlew clean spotlessApply --rerun-tasks --no-build-cache; do ((counter++)) echo "**************************************************************************" echo "### Build succeeded (execution number: $counter) -->> running again... ###" echo "**************************************************************************" done ((counter++)) echo ">>> Build failed on execution number: $counter at $(date) <<<" dejan@dejan:~/kafka$ date Tue 28 Jul 14:44:06 CEST 2026 dejan@dejan:~/kafka$ dejan@dejan:~/kafka$ cat repeatUntilBuildFails.sh #!/bin/bash counter=0 while ./gradlew clean spotlessApply --rerun-tasks --no-build-cache; do ((counter++)) echo "**************************************************************************" echo "### Build succeeded (execution number: $counter) -->> running again... ###" echo "**************************************************************************" done ((counter++)) echo ">>> Build failed on execution number: $counter at $(date) <<<" dejan@dejan:~/kafka$ ``` -- 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]
