Merge pull request #5802 from corda/ramzi/TM-141

Prevent on-demand tests re-triggering from branch indexing
This commit is contained in:
Stefano Franz 2019-12-13 15:09:45 +00:00 committed by GitHub
commit ec8f0a6db1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,8 @@ killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
pipeline {
agent { label 'k8s' }
options { timestamps() }
options { timestamps()
overrideIndexTriggers(false) }
triggers {
issueCommentTrigger('.*smoke tests.*')
@ -94,4 +95,4 @@ def currentBuildTriggeredByComment() {
}
return triggerCause != null
}
}