You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by GitBox <gi...@apache.org> on 2022/05/26 15:10:47 UTC

[GitHub] [kafka] mumrah opened a new pull request, #12220: MINOR: Jenkinsfile Catch timeouts in the Jenkinsfile ARM stage and don't re-throw them

mumrah opened a new pull request, #12220:
URL: https://github.com/apache/kafka/pull/12220

   Recently, the ARM nodes have not been schedulable in our PR builds which leads to the ARM stage hanging for 2 hours until it is timed out. 
   
   https://ci-builds.apache.org/job/Kafka/job/kafka-pr/view/change-requests/job/PR-12213/3/
   
   Even if this other builds are successful, this leads to an overall "aborted" status. 
   
   It looks like the `catchError` directive can also catch interruptions via `catchInterruptions` (such as user cancellations and timeouts). This PR is a test of this parameter.
   
   
   https://www.jenkins.io/doc/pipeline/steps/workflow-basic-steps/


-- 
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: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [kafka] mumrah merged pull request #12220: MINOR: Disable ARM builds

Posted by GitBox <gi...@apache.org>.
mumrah merged PR #12220:
URL: https://github.com/apache/kafka/pull/12220


-- 
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: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [kafka] hachikuji commented on a diff in pull request #12220: MINOR: Catch timeouts in the Jenkinsfile ARM stage and don't re-throw them

Posted by GitBox <gi...@apache.org>.
hachikuji commented on code in PR #12220:
URL: https://github.com/apache/kafka/pull/12220#discussion_r882868934


##########
Jenkinsfile:
##########
@@ -172,7 +172,7 @@ pipeline {
           }
           steps {
             doValidation()
-            catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
+            catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE', catchInterruptions: true) {

Review Comment:
   Wonder if we should do this for `PowerPC` below also?



-- 
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: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [kafka] mumrah commented on a diff in pull request #12220: MINOR: Disable ARM builds

Posted by GitBox <gi...@apache.org>.
mumrah commented on code in PR #12220:
URL: https://github.com/apache/kafka/pull/12220#discussion_r882988364


##########
Jenkinsfile:
##########
@@ -172,7 +172,7 @@ pipeline {
           }
           steps {
             doValidation()
-            catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
+            catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE', catchInterruptions: true) {

Review Comment:
   Added the same pre-check thing for PowerPC in latest commit



-- 
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: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [kafka] mumrah commented on pull request #12220: MINOR: Catch timeouts in the Jenkinsfile ARM stage and don't re-throw them

Posted by GitBox <gi...@apache.org>.
mumrah commented on PR #12220:
URL: https://github.com/apache/kafka/pull/12220#issuecomment-1138891917

   The `catchInterruptions` didn't really do what I had hoped. Instead I added a pre-check stage with a short timeout so we don't wait a full 2 hours before timing out the ARM build. 
   
   Also, I've gone ahead and disabled ARM until Apache INFRA gets it working. Filed INFRA-23305


-- 
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: jira-unsubscribe@kafka.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org