stage('Build File'){
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[credentialsId: '9751a73d-c430-4f9c-9de5-4211f3be7c1d', url: 'g...@gitlab.mydomain.com:myproduct/foo.git']]])
tool name: 'gradle214', type: 'gradle'
sh "echo Starting Build..."
withEnv(["PATH+GRADLE=${tool 'gradle214'}/bin"]){
sh "gradle all -DisQUABuild=${isQUABuild}"
}
sh "echo ending build..." //never gets to this sh call!
Any suggestions on what to troubleshoot? This is a linux build machine. I've tried restarting Jenkins, the build box, everything and I'm still hanging.