Bail out early during pull request builds

This commit is contained in:
R. Tyler Croy 2016-11-09 12:42:43 -08:00 committed by GitHub
parent 314b14d247
commit 7910149087
1 changed files with 7 additions and 0 deletions

7
Jenkinsfile vendored
View File

@ -6,6 +6,13 @@ properties([
]]
])
/* Exit early if we are executing in a pull request, until this ticket is resolved:
* https://issues.jenkins-ci.org/browse/INFRA-902
*/
if (env.CHANGE_ID) {
return
}
node('java') {
try {
stage 'Clean'