Skip to content

Commit

Permalink
Bail out early during pull request builds
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Tyler Croy authored Nov 9, 2016
1 parent 314b14d commit 7910149
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 7910149

Please sign in to comment.