Don't abort in-progress master builds when a new commit is added. (#1358)

Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>
pull/2/head
Adrian Sutton 6 years ago committed by GitHub
parent 80b27f3dab
commit cc6207b8f2
  1. 2
      Jenkinsfile

2
Jenkinsfile vendored

@ -44,7 +44,9 @@ def abortPreviousBuilds() {
}
}
if (env.BRANCH_NAME != "master") {
abortPreviousBuilds()
}
try {
parallel UnitTests: {

Loading…
Cancel
Save