Hi Jenkin User,

We have the framework in which we are around 9 test runner file. We want to 
invoke all the test runner file at one go. i.e. Parallel. I want to 
understand how I can achieve the same.

pipeline{
agent{
lable 'qa'
}
options{
disableConcurrentBuilds()
}
stages
    {    
        stage('Clean'){
            steps
            {
            dir()
            deleteDir)(
            }
        }
    }
        stage('Testing'){
        agent{
            docker{
                image
                }
            }
            steps
            {
            echo 'run'
            sh 'mvn clean'
            echo 'Run Test'
            sh 'mvn -Dtest=runnerfile test'
            }
        }
}

Thanks for the help

-- 
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/eff35423-7e98-4220-8b09-ecd86a726d97n%40googlegroups.com.

Reply via email to