I have a pipeline with stage for Selenium execution where execution of 
Selenium tests takes around 5 hours. 

In 'Selenium Execution' stage, I've code to execute Selenium tests then 
taking backup of results. Here pipeline executes on say `ABC` machine and 
Selenium stage execution on say `XYZ` client. I've following code to 
achieve the same -

    pipeline {
        agent {lable 'ABC'}
    
        stages {
    
            stage('Selenium Execution') {
                steps {
                  node('XYZ')
                    script {
                             <method call to execute Selenium tests is here>
                             <method call to take results backup here> 
                        }
                    }
                  }
                }
            }
    
        }
    }

When triggered build, we can see Selenium tests are completely executed by 
looking at console log. But after that next code to take results backup is 
not executed and also no error is seen for the same.

Pipeline stuck there. Could you please help me to understand what could be 
the problem here or what is a way to identify problems?

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/984f11e9-a521-4769-b9de-6e92ed023aaf%40googlegroups.com.

Reply via email to